Backend Workers experiment added and removed; Render chosen instead
Maison-Retail-Management-International/mike tried running the Express backend on Cloudflare Workers, confirmed it doesn't work (LibreOffice dependency), and landed on Render. Four commits, near-zero net change.
Commit 68228ef added a backend/wrangler.jsonc and a stub backend/src/worker.ts to get Cloudflare Workers Builds to accept the backend directory. The worker itself only answered /health; everything else returned 501. The commit message says plainly that "Full Mike API (Express + LibreOffice) is not available on this Worker." It was scaffolding, not a real backend.
38d65172 reverses it entirely. wrangler.jsonc, worker.ts, and wrangler ^4.90.0 as a devDependency are all removed. The backend stays Express with R2 storage and runs on Render.
The two frontend env edits track the decision: NEXT_PUBLIC_API_BASE_URL went from localhost:3001 to mike-backend...workers.dev (afdb3d2), then to https://mike-cuui.onrender.com (bf8d6a2) once Render won.
Nothing to import from these commits. The surviving code is identical to the starting point.
Spotted something wrong? Or know the PR text has fresher detail than the writeup above?