18 lines
348 B
Plaintext
18 lines
348 B
Plaintext
# Tushare API配置
|
||
TUSHARE_TOKEN=your_tushare_token_here
|
||
|
||
# 数据库配置(如果使用PostgreSQL)
|
||
DB_HOST=postgres
|
||
DB_PORT=5432
|
||
DB_NAME=stock_monitor
|
||
DB_USER=stock_user
|
||
DB_PASSWORD=stock_password
|
||
|
||
# Redis配置(如果使用Redis)
|
||
REDIS_HOST=redis
|
||
REDIS_PORT=6379
|
||
|
||
# 应用配置
|
||
DEBUG=false
|
||
LOG_LEVEL=info
|
||
SECRET_KEY=your_secret_key_here |