mirror of
https://github.com/Smile-QWQ/SubTracker.git
synced 2026-05-15 07:47:05 +08:00
- 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
13 lines
303 B
HTML
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>
|