mirror of
https://github.com/GMWalletApp/epusdt.git
synced 2026-07-07 18:26:16 +00:00
ff157c33d9
Removed PostgreSQL and MySQL configuration settings from the example environment file.
39 lines
692 B
Bash
39 lines
692 B
Bash
app_name=epusdt
|
|
app_uri=https://epusdt.com
|
|
log_level=info
|
|
http_access_log=false
|
|
sql_debug=false
|
|
http_listen=:8000
|
|
|
|
static_path=/static
|
|
runtime_root_path=./runtime
|
|
|
|
log_save_path=./logs
|
|
log_max_size=32
|
|
log_max_age=7
|
|
max_backups=3
|
|
|
|
# supported values: postgres,mysql,sqlite
|
|
db_type=sqlite
|
|
|
|
# sqlite primary database config
|
|
sqlite_database_filename=
|
|
sqlite_table_prefix=
|
|
|
|
|
|
# sqlite runtime store config
|
|
runtime_sqlite_filename=epusdt-runtime.db
|
|
|
|
# background scheduler config
|
|
queue_concurrency=10
|
|
queue_poll_interval_ms=1000
|
|
callback_retry_base_seconds=5
|
|
|
|
order_expiration_time=10
|
|
order_notice_max_retry=0
|
|
|
|
api_rate_url=
|
|
|
|
# Set to true to re-run the install wizard on next startup.
|
|
install=true
|