ddshi dc98407edc fix: 移除 mock fallback,完全使用 DeepSeek AI 解析
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-28 17:51:54 +08:00

22 lines
607 B
Bash

# Server
PORT=3000
NODE_ENV=development
# JWT
JWT_SECRET=dev-secret-key-do-not-use-in-production
JWT_EXPIRES_IN=7d
JWT_REFRESH_EXPIRES_IN=30d
# Database (SQLite for local development, PostgreSQL for production)
DATABASE_URL=file:./prisma/dev.db
# PostgreSQL (for production - Tencent Cloud)
# DATABASE_URL=postgresql://qia_admin:your-password@postgres.ap-shanghai.myqcloud.com:5432/qia
# DeepSeek AI
DEEPSEEK_API_KEY=sk-3e2019e98c6f406b86ba31c7b820fb51
DEEPSEEK_API_URL=https://api.deepseek.com/chat/completions
# CORS (支持多个开发端口)
CORS_ORIGIN=http://localhost:5173,http://localhost:5174