-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
36 lines (28 loc) · 984 Bytes
/
Copy path.env.example
File metadata and controls
36 lines (28 loc) · 984 Bytes
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
# 车辆管家 CarCare - 生产环境变量模板
# 复制为 .env 并填入真实值:cp .env.example .env
# === 数据库(不设即 SQLite) ===
# DATABASE_URL=postgresql+asyncpg://user:pass@host:5432/carcare
# === 文件存储(不设即本地 files/ 目录) ===
# STORAGE_BACKEND=s3
# S3_ENDPOINT=https://minio.example.com
# S3_ACCESS_KEY=xxx
# S3_SECRET_KEY=xxx
# S3_BUCKET=carcare
# S3_PUBLIC_BASE=https://cdn.example.com
# === JWT 密钥(生产必须设!每个 Pod 重启后 token 失效) ===
# JWT_SECRET=生成一个随机字符串 openssl rand -hex 32
# === 对话模型密钥 ===
LLM_API_KEY=
# === 向量模型密钥 ===
LLM_EMBEDDING_API_KEY=
# === OCR 多模态模型密钥(用于结算单识别) ===
OCR_LLM_API_KEY=
# === 联网搜索(百度千帆 AppBuilder) ===
# SEARCH_API_KEY=
# === 可选:覆盖模型名称/地址 ===
# LLM_API_URL=
# LLM_MODEL=
# LLM_EMBEDDING_API_URL=
# LLM_EMBEDDING_MODEL=
# OCR_LLM_API_URL=
# OCR_LLM_MODEL=