FloorVisualizer/.env.example

26 lines
597 B
Plaintext
Raw Normal View History

2026-07-27 07:34:32 +00:00
# ─── 服务器 ───
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