Cromulent API unavailable
Couldn't reach Cromulent API at https://api.cromulent.ly. fetch failed. Confirm the FastAPI backend is deployed and reachable at that URL.
Current configuration
NEXT_PUBLIC_API_BASE_URL = https://api.cromulent.ly
How to fix
- Confirm the FastAPI backend is deployed and reachable at
https://api.cromulent.ly. - Hit
https://api.cromulent.ly/healthfrom a browser — you should see{"status":"ok","service":"cromulent",...}. - Check the FastAPI deployment logs for the failing request (server-side fetch from this app).
- Confirm CORS allows
this app’s origin— setCORS_ALLOWED_ORIGINSon FastAPI to include it.
Full deployment checklist: dashboard_deployment.md.