mirror of
https://github.com/GMWalletApp/epusdt.git
synced 2026-07-07 18:26:16 +00:00
60 lines
1.1 KiB
Bash
60 lines
1.1 KiB
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=
|
|
|
|
# postgres config
|
|
postgres_host=127.0.0.1
|
|
postgres_port=3306
|
|
postgres_user=mysql_user
|
|
postgres_passwd=mysql_password
|
|
postgres_database=database_name
|
|
postgres_table_prefix=
|
|
postgres_max_idle_conns=10
|
|
postgres_max_open_conns=100
|
|
postgres_max_life_time=6
|
|
|
|
# mysql config
|
|
mysql_host=127.0.0.1
|
|
mysql_port=3306
|
|
mysql_user=mysql_user
|
|
mysql_passwd=mysql_password
|
|
mysql_database=database_name
|
|
mysql_table_prefix=
|
|
mysql_max_idle_conns=10
|
|
mysql_max_open_conns=100
|
|
mysql_max_life_time=6
|
|
|
|
# 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
|