MBR-Business-Dev — Lessons
Section titled “MBR-Business-Dev — Lessons”Insights captured during project work. Add entries as discovered.
Project folder naming: confirm before first build
Section titled “Project folder naming: confirm before first build”When a project folder is renamed (e.g. bmr/ → mbr/), the cascade includes: crontab entries, all shell scripts, all Python path references, and all KB notes referencing the old path. Catch folder naming with Talbot before the first build — a rename costs a full session.
Captured from: Hassle Threshold Engine task (2026-04-09)
Wrangler Pages: create project before first deploy
Section titled “Wrangler Pages: create project before first deploy”wrangler pages deploy fails with “Project not found” if the Cloudflare Pages project doesn’t exist yet — it does NOT create the project automatically. Always run this first:
wrangler pages project create [name] --production-branch mainThen deploy normally. Subsequent deploys to the same project name work without the create step.
Captured from: Rate Scanner Layer 1 Hardening task (2026-04-22)