16 lines
329 B
Bash
16 lines
329 B
Bash
|
|
PORT=3000
|
||
|
|
DB_FILE=./local.db
|
||
|
|
API_BASE_URL=http://www.boonlive-rcu.com:7000/api/values
|
||
|
|
|
||
|
|
PORT=3000
|
||
|
|
|
||
|
|
# 数据库配置
|
||
|
|
POSTGRES_HOST=10.8.8.109
|
||
|
|
POSTGRES_PORT=5433
|
||
|
|
POSTGRES_DATABASE=log_platform
|
||
|
|
POSTGRES_USER=log_admin
|
||
|
|
POSTGRES_PASSWORD=YourActualStrongPasswordForPostgres!
|
||
|
|
POSTGRES_MAX_CONNECTIONS=6
|
||
|
|
POSTGRES_IDLE_TIMEOUT_MS=30000
|
||
|
|
|