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.
|
|
|
|
|
# 数据库配置
|
|
|
|
|
|
DATABASE_URL=postgresql://postgres:postgres@localhost:5432/amazing_data
|
|
|
|
|
|
|
|
|
|
|
|
# Redis配置
|
|
|
|
|
|
REDIS_URL=redis://localhost:6379/0
|
|
|
|
|
|
|
|
|
|
|
|
# JWT密钥(生产环境请修改)
|
|
|
|
|
|
SECRET_KEY=your-secret-key-change-in-production
|
|
|
|
|
|
|
|
|
|
|
|
# Token过期时间(小时)
|
|
|
|
|
|
ACCESS_TOKEN_EXPIRE_HOURS=24
|
|
|
|
|
|
|
|
|
|
|
|
# 调试模式
|
|
|
|
|
|
DEBUG=false
|