-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
23 lines (18 loc) · 858 Bytes
/
.env.example
File metadata and controls
23 lines (18 loc) · 858 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# ==================== DeepSeek AI 配置 ====================
DEEPSEEK_API_KEY=your-deepseek-api-key-here
DEEPSEEK_BASE_URL=https://api.deepseek.com/v1
DEEPSEEK_MODEL=deepseek-chat
# ==================== 数据库配置 ====================
# 选项1: Supabase (推荐)
# 从 https://supabase.com 获取
DATABASE_URL="postgresql://user:password@host:5432/dbname"
# 选项2: 本地 PostgreSQL (Docker)
# DATABASE_URL="postgresql://postgres:password@localhost:5432/personal_assistant"
# ==================== 应用配置 ====================
NODE_ENV=development
PORT=3000
NEXT_PUBLIC_APP_URL=http://localhost:3000
# ==================== JWT 配置 (可选,Phase 1 不需要) ====================
# JWT_SECRET=your-super-secret-key-change-this
# ==================== 部署配置 ====================
# Vercel 会自动设置,本地开发不需要改动