Add a top-level README plus production configuration, API, and rollout documentation. Also align deployment and runbook docs with the current runtime semantics, ports, and daily pipeline entrypoints.
18 lines
520 B
Plaintext
18 lines
520 B
Plaintext
# LLM Intelligence Hub 本地环境变量示例
|
||
# 复制为 .env 或 .env.local 后再执行脚本
|
||
|
||
# OpenRouter 真实采集必须配置
|
||
OPENROUTER_API_KEY=
|
||
|
||
# 本机 PostgreSQL 连接(long 用户通过本地 socket 直连)
|
||
DATABASE_URL="host=/var/run/postgresql dbname=llm_intelligence user=long sslmode=disable"
|
||
|
||
# API Server 监听端口(默认 8080)
|
||
PORT=8080
|
||
|
||
# 正式日报失败告警(可选)
|
||
FEISHU_WEBHOOK=
|
||
|
||
# 日报输出目录(可选,默认 reports/daily)
|
||
REPORT_OUTPUT_DIR="reports/daily"
|