26 lines
597 B
Plaintext
26 lines
597 B
Plaintext
# ─── 服务器 ───
|
|
PORT=8099
|
|
|
|
# ─── 数据库 ───
|
|
DATABASE_URL=postgres://postgres:your_password@localhost:5432/floorvisualizer?sslmode=disable
|
|
|
|
# ─── Redis ───
|
|
REDIS_ADDR=localhost:6379
|
|
|
|
# ─── JWT ───
|
|
JWT_SECRET=change-this-to-a-strong-secret
|
|
|
|
# ─── AI ───
|
|
OPENROUTER_API_KEY=sk-or-v1-your-openrouter-key-here
|
|
|
|
# ─── 代理(国内环境用,留空则直连) ───
|
|
PROXY_URL=http://127.0.0.1:7897
|
|
# DISABLE_PROXY=true
|
|
|
|
# ─── 队列 ───
|
|
WORKER_COUNT=5
|
|
|
|
# ─── 日志 ───
|
|
LOG_DIR=logs
|
|
LOG_LEVEL=INFO
|