24 lines
335 B
Plaintext
24 lines
335 B
Plaintext
# 应用配置
|
|
DEBUG=false
|
|
HOST=0.0.0.0
|
|
PORT=8000
|
|
|
|
# 数据库配置
|
|
DB_HOST=localhost
|
|
DB_PORT=3306
|
|
DB_USER=root
|
|
DB_PASSWORD=password
|
|
DB_NAME=tianfeng_task
|
|
|
|
# Redis配置
|
|
REDIS_HOST=localhost
|
|
REDIS_PORT=6379
|
|
REDIS_DB=0
|
|
REDIS_PASSWORD=
|
|
|
|
# 环境配置
|
|
TIANFENG_ENV=default
|
|
|
|
# 日志配置
|
|
LOG_LEVEL=INFO
|
|
LOG_FILE=logs/tianfeng_task.log |