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.

25 lines
425 B

# 服务器配置
PORT=3000
NODE_ENV=development
# 数据库配置
DATABASE_URL=mysql://user:password@localhost:3306/aguzhitou
# Redis配置
REDIS_URL=redis://localhost:6379
# JWT配置
JWT_SECRET=your-secret-key-min-32-characters-long
JWT_EXPIRES_IN=7d
# AKShare配置
AKSHARE_URL=http://localhost:8000
# 日志配置
LOG_LEVEL=info
LOG_DIR=./logs
# 限流配置
RATE_LIMIT_WINDOW_MS=60000
RATE_LIMIT_MAX_REQUESTS=100