| 1234567891011121314151617181920212223242526272829 |
- # DoTouch.AI API - Environment Variables
- # Copy to .env and fill in real values
- # Database
- DATABASE_URL=postgresql://dotouch:dotouch@localhost:5432/dotouch?schema=public
- # Redis
- REDIS_URL=redis://localhost:6379
- # JWT
- JWT_SECRET=change-me-in-production
- JWT_EXPIRES_IN=7d
- # Server
- PORT=8080
- # Email (SMTP) - 开发环境仅打印到控制台,生产环境填写真实配置
- # SMTP_HOST=smtp.example.com
- # SMTP_PORT=587
- # SMTP_USER=your-email@example.com
- # SMTP_PASS=your-password
- # SMTP_FROM=noreply@dotouch.ai
- # DashScope 上游 API
- DASHSCOPE_API_KEY=sk-placeholder-change-me
- DASHSCOPE_BASE_URL=https://dashscope.aliyuncs.com/compatible-mode/v1
- # 网关频率限制(每 API Key 每分钟请求数)
- GATEWAY_RATE_LIMIT_PER_MIN=60
|