Not configured

This instance has no database.

Conduit33 can run without one — it falls back to an in-memory demo with sample email — but that mode has no authentication: every visitor shares the same identity and the same data. That is fine on a laptop and wrong on the internet, so a production build refuses to serve it rather than quietly becoming an open sandbox.

To finish setting this up

  1. 1. Set DATABASE_URL, NEXT_PUBLIC_SUPABASE_URL and NEXT_PUBLIC_SUPABASE_ANON_KEY on the deployment.
  2. 2. Run npm run db:migrate against it.
  3. 3. Redeploy. Sign-up, sign-in and tenant isolation come on automatically.

DEPLOY.md has the full sequence, and npm run preflight reports exactly what is still missing. To deliberately run a public, unauthenticated sandbox, set ALLOW_DEMO_IN_PRODUCTION=1.

Current mode: demo (no DATABASE_URL)