docs: add canonical IA landing + first-pass core pages

This commit is contained in:
Abhimanyu Saharan
2026-02-11 06:15:54 +00:00
parent c3490630a4
commit f1a8ef074d
12 changed files with 368 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
# Troubleshooting
This is the high-level troubleshooting entry point (minimal churn).
- Deep-dive troubleshooting: [docs/troubleshooting/README.md](troubleshooting/README.md)
## Quick triage
### Symptom: frontend loads but shows API errors
- Confirm `NEXT_PUBLIC_API_URL` points to a reachable backend.
- Check backend `/healthz`.
### Symptom: frontend keeps redirecting / Clerk errors
- If you are running locally without Clerk, ensure `NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY` is **unset/blank**.
- See: [repo README Clerk note](../README.md#note-on-auth-clerk).
### Symptom: backend 5xx
- Check DB connectivity (`DATABASE_URL`) and migrations.
- Check backend logs.
## Next
- Promote the most common issues from `docs/troubleshooting/README.md` into this page once we see repeated incidents.