28 lines
933 B
Bash
28 lines
933 B
Bash
# Required for the /api/cron routes (DeepSeek summarization + community agent).
|
|
DEEPSEEK_API_KEY=sk-your-deepseek-key
|
|
|
|
# Optional — raises GitHub API rate limit from 60 to 5000 req/h.
|
|
# Use a fine-grained PAT scoped to public repos only.
|
|
GITHUB_TOKEN=
|
|
|
|
# Override which repo to mirror. Defaults to Hmbown/CodeWhale.
|
|
GITHUB_REPO=Hmbown/CodeWhale
|
|
|
|
# Optional — required to manually invoke /api/cron
|
|
# (cloudflare cron triggers don't need this; they set cf-cron).
|
|
CRON_SECRET=
|
|
|
|
# Optional — defaults to deepseek-v4-flash.
|
|
DEEPSEEK_MODEL=deepseek-v4-flash
|
|
DEEPSEEK_BASE_URL=https://api.deepseek.com
|
|
|
|
# Admin panel auth. Set to a random secret; access /admin?token=<this-value>.
|
|
MAINTAINER_TOKEN=
|
|
|
|
# GitHub PAT for posting comments via /admin. Needs issues:write scope.
|
|
MAINTAINER_GITHUB_PAT=
|
|
|
|
# Set to 1 once the Gitee mirror at gitee.com/Hmbown/...
|
|
# exists. Until then leave blank to hide Gitee links.
|
|
NEXT_PUBLIC_GITEE_ENABLED=
|