9e45780ba0
First commit of the Next.js community site that powers deepseek-tui.com, deployed via Cloudflare Workers / OpenNext. This commit lands the scaffold and applies the visual + correctness pass requested by community feedback: - Palette: drop the cream/Anthropic-feel paper (#F4F1E8) for a DeepSeek-aligned cool white + soft gray (#FFFFFF / #F4F6FB), with indigo accents kept. Soften default hairlines so a pure-white background reads clean instead of harsh. - Mobile: add a hamburger menu (mobile-menu.tsx) so phones can reach Install / Docs / Activity / Roadmap / Contribute — previously the link list was hidden on phones with no replacement. Tighter hero, flexible button row, viewport-safe code blocks, columnar grids collapse cleanly under 768px, and the printed-almanac center rule is desktop-only now (it sliced through narrow viewports). - "How it works" diagram: replace the hand-rolled ASCII art (which misaligned under CJK monospace because Han characters take 2 columns vs Latin's 1, per dhh's note in WeChat) with a real mermaid diagram rendered client-side via dynamic import. Uses the mermaid.live standard syntax 庄表伟 recommended. - Issue #1104: the docs listed a `deepseek-cn` provider that the v0.8.16 binary doesn't accept (`ProviderArg` in crates/cli only has 9 variants; the 10th lives only in the legacy tui/config.rs). derive-facts.mjs now omits `deepseek-cn` until that variant is wired through the shared ProviderKind, and the install page's China-network recipe uses `base_url` / `DEEPSEEK_BASE_URL` (which actually works on v0.8.16) instead of the unsupported provider. Auto-deploys via .github/workflows/deploy-web.yml on push to main. Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
28 lines
939 B
Bash
28 lines
939 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/deepseek-tui.
|
|
GITHUB_REPO=Hmbown/deepseek-tui
|
|
|
|
# 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=
|