You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

26 lines
468 B

# 环境变量配置文件
# 服务器配置
NODE_ENV=development
PORT=3000
HOST=localhost
# 安全配置
AI_APIKEY=ai-apikey
SESSION_SECRET=your-session-secret-key-here,another-secret-key
JWT_SECRET=your-jwt-secret-key-must-be-at-least-32-characters-long
# 数据库配置
DB_PATH=./data/database.db
# 日志配置
LOG_LEVEL=info
LOG_FILE=./logs/app.log
# 缓存配置
REDIS_HOST=localhost
REDIS_PORT=6379
# 任务调度配置
JOBS_ENABLED=true
TZ=Asia/Shanghai