This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
# 数据库配置
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