-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
31 lines (26 loc) · 1.93 KB
/
Copy path.env.example
File metadata and controls
31 lines (26 loc) · 1.93 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# AlphaMind 环境变量配置模板
# 复制此文件为 .env 并填入真实值后,执行 docker compose up -d
# ─────────────────────────────────────────────
# LLM API Keys(至少配置一个,推荐 DeepSeek)
# ─────────────────────────────────────────────
OPENAI_API_KEY=
DEEPSEEK_API_KEY=
ANTHROPIC_API_KEY=
# ─────────────────────────────────────────────
# 数据库(生产环境请修改密码)
# ─────────────────────────────────────────────
DB_USERNAME=postgres
DB_PASSWORD=change_me_in_production
# ─────────────────────────────────────────────
# Redis(生产环境建议设置密码)
# ─────────────────────────────────────────────
REDIS_PASSWORD=
# ─────────────────────────────────────────────
# 跨域允许来源(多个用逗号分隔)
# ─────────────────────────────────────────────
CORS_ALLOWED_ORIGINS=http://localhost:3000
# ─────────────────────────────────────────────
# 功能开关
# ─────────────────────────────────────────────
# true: 从真实数据源拉取行情;false: 使用内置模拟数据
FETCH_REAL_DATA=false