Gap: Staging/production environment split
The wrangler config does not define separate [env.staging] and [env.production] environments.
Why it matters
Without environment separation, all deployments share the same bindings and configuration. This makes it impossible to test changes safely before pushing to production.
Suggested fix
In wrangler.jsonc:
Filed by Arc production-grade audit — 2026-03-12
{ "name": "loop-starter-kit", "env": { "staging": { "name": "loop-starter-kit-staging", "vars": { "ENVIRONMENT": "staging" } }, "production": { "name": "loop-starter-kit-production", "vars": { "ENVIRONMENT": "production" } } } }