# ============================================ # AI Services # ============================================ # Moonshot AI (Kimi) - content generation KIMI_API_KEY=sk-your-kimi-api-key KIMI_BASE_URL=https://api.moonshot.cn/v1 # OpenAI (fallback) OPENAI_API_KEY=sk-your-openai-key # Alibaba DashScope - image/voice generation DASHSCOPE_API_KEY=sk-your-dashscope-key # ============================================ # Cloud Storage (OSS) # ============================================ # Aliyun OSS OSS_ACCESS_KEY_ID=your-access-key OSS_ACCESS_KEY_SECRET=your-secret OSS_BUCKET=your-bucket OSS_REGION=oss-cn-hangzhou OSS_ENDPOINT=https://your-bucket.oss-cn-hangzhou.aliyuncs.com # ============================================ # Deployment # ============================================ # Vercel (auto-injected, not needed for local dev) # VERCEL_URL=https://your-app.vercel.app # ============================================ # Database (if needed) # ============================================ # Supabase / PostgreSQL DATABASE_URL=postgresql://user:pass@host:5432/db # Redis (cache) REDIS_URL=redis://localhost:6379 # ============================================ # Auth (if needed) # ============================================ # Google OAuth GOOGLE_CLIENT_ID=your-client-id GOOGLE_CLIENT_SECRET=your-secret # JWT Secret JWT_SECRET=your-jwt-secret-key