Files
wechat-article-exporter/.env.example
jock 26fd877b08 下线公开 API 的对外服务,移除会员购买入口
页面路由 /dashboard/api 与所有 server/api/public/v1 接口保持不变,
存量用户的 X-Auth-Key / X-Api-Token 继续可用;仅停止对外开放与新会员开通。

- 顶部计费提示横幅改为红色「本站 API 已下线」提示(仍由 membership.enabled 网关控制,
  fork 私有部署不受影响)
- 删除定价卡片与微信/QQ 扫码加好友购买卡片,双列布局收敛为单列
- 限频表表头去掉价格、章节徽章改为「已停止开通」、用法说明去掉按天购买措辞
- 保留密钥查询、限频说明、X-Api-Token 用法、令牌自助查询与接口文档/在线调试
- 清理随之失效的 MEMBERSHIP_PRICE / _WECHAT_NOTE / _QR 运行时配置

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
2026-07-29 20:18:54 +08:00

26 lines
1.2 KiB
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# 调试微信代理请求 (仅开发环境(development)支持)
NUXT_DEBUG_MP_REQUEST=false
# AG-Grid 企业版授权
NUXT_AGGRID_LICENSE=
# KV绑定(本地/docker)
NITRO_KV_DRIVER=fs
NITRO_KV_BASE=.data/kv
# KV绑定(cloudflare workers)
# 部署到 Cloudflare Workers 时由 yarn deploy/preview 自动设置为该值;
# KV 命名空间在 wrangler.toml 的 [[kv_namespaces]] 中以绑定名 KV 声明。
#NITRO_KV_DRIVER=cloudflare-kv-binding
DEBUG_KEY=
# ── 会员 / 限速层仅公开托管用默认关闭fork 私有部署无需配置:无限速、无下线提示)──────
# 开启后:公开 API 按调用频率分「游客 / 会员」两档并限速;文档页展示限速说明与 API 下线提示。
# 注:公开站的 API 已下线,不再开通新会员,此开关仅用于维持存量令牌的限速分层与页面提示。
#NUXT_PUBLIC_MEMBERSHIP_ENABLED=true
#
# 服务端限速依赖 wrangler.toml 的 [[ratelimits]] 绑定(改 limit 即调限额):
# 查询类 RL_GUEST_QUERY(5/分)/RL_MEMBER_QUERY(100/分);下载类 RL_GUEST_DOWNLOAD(1/分)/RL_MEMBER_DOWNLOAD(60/分)。
# 会员令牌发放/撤销用本地脚本yarn member:issue <天数> [备注] / yarn member:revoke <token>(脚本不入库)。