5.9 KiB
5.9 KiB
Repository Guidelines
Project Structure & Module Organization
app/contains service modules:cm_api.py(Flask API, serves on3000)cm_web_view.py(Flask UI, container8000, host8001)cm_telegram.py(Telegram bot + account monitor thread)cm_transfer_credit.py(scheduled transfer worker)db.py(MySQL connection/retry logic)
web/is the Next.js 15 app for the new web view (cm-web-nextservice). Tailwind v4, App Router, TypeScript. Side-by-side with the legacy Flaskcm_web_view.pyuntil B4 cuts over.docker/<service>/Dockerfilebuilds one image per service (cm-api,cm-web,cm-web-next,cm-telegram,cm-transfer).docker-compose.ymluses registry images;docker-compose.override.ymlswaps to local builds.scripts/local_build.shstarts local compose;scripts/publish.shbuilds and pushes all images via buildx.
Reproduce From Scratch (Clean Machine)
- Install prerequisites:
- Docker Engine + Docker Compose v2
- MySQL 8+ reachable by containers
- Telegram bot token(s) for bot and optional alerting
- Clone and enter repo:
git clone <repo-url> cm_bot_v2 cd cm_bot_v2 - Create
.envat repo root for compose interpolation:CM_IMAGE_PREFIX=local DOCKER_IMAGE_TAG=dev TELEGRAM_BOT_TOKEN=<required> TELEGRAM_ALERT_CHAT_ID=<optional> TELEGRAM_ALERT_BOT_TOKEN=<optional> CM_TRANSFER_MAX_THREADS=1 - Prepare the local dev DB and stack:
This brings upcp envs/dev/.env.example .env # Edit .env if you want the bot CLI to actually call cm99.net # (CM_AGENT_ID / CM_AGENT_PASSWORD / CM_SECURITY_PIN). bash scripts/dev.sh upmysql(port127.0.0.1:3306),api-server, andweb-view. The schema and a 4-row seed are applied automatically fromdocker/mysql/init.d/. Bots (telegram-bot,transfer-bot) are gated behind a composebotsprofile and do not start in dev.
Auth
- The Next.js dashboard (
cm-web-next) gates every route except/cm-authbehind a session cookie. - Password sign-in uses
CM_AGENT_IDandCM_AGENT_PASSWORDfrom the deployment's.env(constant-time compare). No separate user table. - WebAuthn passkey sign-in is the preferred path on devices with platform authenticators (Face ID, Touch ID, Android fingerprint). Enroll one at
/cm-passkeysafter the first password login. - Session: signed
httpOnlycookie (cm_auth), 30-day rolling. RequiresCM_AUTH_SECRETenv var (≥32 chars). Generate withopenssl rand -hex 32. - Passkey storage:
/data/auth/passkeys.jsoninside the container, mounted from the${CM_DEPLOY_NAME}-web-next-auth-datanamed volume. Atomic writes; persists across container restarts and image rebuilds. - "Forgot password" recovery: look at the deployment's
.env. There's no email reset flow. - Rotating
CM_AUTH_SECRETinvalidates all sessions (forces everyone to re-login).
Dev Tier (Local Development)
- Lifecycle:
bash scripts/dev.sh {up,down,reset-db,logs,status}. - URLs:
http://localhost:8000/(legacy Flask UI),http://localhost:8010/(new Next.js scaffold). Both run side-by-side until the B4 cutover retires the Flask version. - Bot CLI:
bash scripts/bot_cli.sh(drops into the TUI menu) orbash scripts/bot_cli.sh <subcommand>(e.g.,register,set-pin <link>,monitor-once --target 5). The CLI runs in your local.venvand connects to the dev mysql at127.0.0.1:3306. - The auto-create monitor does NOT run in dev (it lives in
telegram-bot, which is gated by thebotsprofile). Usebot_cli.sh monitor-onceto exercise the same code path manually. - Tests:
.venv/bin/python -m unittest tests.test_debug_enabled tests.test_bot_cli -v.
Build, Test, and Development Commands
python3 -m venv .venv && source .venv/bin/activate && pip install -r requirements.txt: optional non-Docker local env.docker compose -f docker-compose.yml -f docker-compose.override.yml up --build: local dev stack.docker compose up -d: run prebuilt/published images.bash scripts/publish.sh <tag>: build + push all service images (gitea.04080616.xyz/yiekheng).
Verification Checklist
- API responds:
curl http://localhost:3000/acc/ - Web UI loads: open
http://localhost:8000(dev) orhttp://localhost:8001(rex prod) /http://localhost:8005(siong prod). - Service logs are clean:
docker compose logs -f api-server web-view telegram-bot transfer-bot - Telegram bot validates with
/menuand/9in chat after startup.
Coding Style & Naming Conventions
- Python 3.9, 4-space indentation, snake_case for variables/functions, module names as
cm_<role>.py. - Preserve existing class names (
CM_API,CM_BOT,CM_BOT_HAL). - Keep environment variable names uppercase and document new ones in this file.
- No enforced formatter/linter in-repo; match the surrounding style in touched files.
Testing Guidelines
- No automated test suite is currently committed.
- Required minimum before PR: run verification checklist above on local compose.
- For logic-heavy changes, add
pytesttests undertests/and include execution command/results in PR.
Commit & Pull Request Guidelines
- Use short, focused commit subjects in imperative tone (existing history:
Fix ...,Update ...,Refactor ...). - Keep each commit scoped to one behavior change.
- PR must include:
- problem statement and solution summary,
- services/files affected,
- required env/config changes,
- API/log evidence (and UI screenshot if
cm_web_view.pychanged).
Security & Configuration Tips
- Never commit real secrets in
.env. CM_DEBUGdefaults tofalsefor both Flask services. Set it totrueonly in local development; rex/siong production env files must leave it unset (the Werkzeug debugger is RCE if reachable).- Keep container clocks mounted (
/etc/timezone,/etc/localtime) as compose currently defines to avoid schedule drift.