-
Notifications
You must be signed in to change notification settings - Fork 58
Expand file tree
/
Copy path.env.example
More file actions
36 lines (30 loc) · 1.15 KB
/
Copy path.env.example
File metadata and controls
36 lines (30 loc) · 1.15 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
32
33
34
35
36
# AI Team OS — 环境变量模板
# 复制为 .env 后修改: cp .env.example .env
# ============================================================
# PostgreSQL
# ============================================================
POSTGRES_USER=aiteam
POSTGRES_PASSWORD=aiteam_dev
POSTGRES_DB=aiteam
DB_PORT=5432
# 完整数据库连接URL (供应用使用)
DATABASE_URL=postgresql+asyncpg://aiteam:aiteam_dev@localhost:5432/aiteam
# ============================================================
# Redis
# ============================================================
REDIS_PORT=6379
REDIS_URL=redis://localhost:6379/0
# ============================================================
# 应用端口
# ============================================================
API_PORT=8000
DASHBOARD_PORT=3000
# ============================================================
# AI 服务
# ============================================================
ANTHROPIC_API_KEY=sk-ant-xxxxxxxxxxxxxxxxxxxxxxxx
# ============================================================
# 运行环境
# ============================================================
# development | staging | production
AITEAM_ENV=development