Files
SubTracker/apps/web/index.html
SmileQWQ 6b45518593 feat: add Cloudflare Worker lite branch implementation
- migrate the lite branch runtime to Cloudflare Worker with D1, KV and optional R2 support

- add worker runtime context, request routing, D1 init guards, bootstrap/reset scripts and wrangler config

- keep the product aligned with the lite plan: MailChannels email, JSON-only Wallos import, no local OCR, remote logo fallback without local disk storage

- restore logo search behavior toward main parity while adapting storage and cache to Worker bindings

- update branding and UI copy for SubTracker Lite, including runtime naming and lite-specific settings/help text

- replace Docker-oriented docs/workflow assets with cf-worker specific CI/deploy workflows and deployment docs

- add regression tests for worker runtime paths, database init, logo search, worker capability helpers and bootstrap script behavior
2026-04-22 01:49:17 +08:00

13 lines
303 B
HTML

<!doctype html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>SubTracker Lite</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>