Operations > Known Problems Catalog for the complete categorized issue registry.
1) Local Startup
Symptoms:- app/server fails to start
- unexpected auth or DB connection errors
- verify
.envand Supabase/DB credentials - confirm ports are not already in use
- run API health check:
curl -s http://localhost:3333/api/health
2) Test/CI Failures
Symptoms:- unit/integration/e2e failures
- noisy warnings that hide real errors
- run smallest failing suite first
- validate schema/enum drift in touched routes
- fix warning debt when it blocks clear triage
3) Extension Issues
Symptoms:- extension cannot call API
- auth sync appears broken
- rebuild extension after auth/API changes
- verify extension origins are allowed by backend
- verify tokens are synced and sent in API calls
4) Docs Deployment Issues
Symptoms:- docs site shows stale or starter content
- pages missing from navigation
- verify Mintlify source repo/path settings
- verify
docs.jsonis committed to docs repo root - confirm DNS CNAME:
docs -> cname.mintlify-dns.com
5) Security/Auth Regressions
Symptoms:- unauthorized data visible
- session checks bypassed unexpectedly
- stop deployment/merge until verified
- inspect auth/public/share route changes first
- run targeted auth integration/e2e tests
- document rollback path before retry