Common Issues
Installation Issues
Issue: pnpm install fails
Solution: Ensure you have Node.js 22.0+ and pnpm 9.0+ installed.
node --version
pnpm --version
Issue: Port already in use
Solution: Change the port or kill the process using the port.
# Use a different port
PORT=3001 pnpm dev
# Or kill the process
lsof -ti:3000 | xargs kill -9
Runtime Issues
Issue: Graph view is empty
Solution: Verify that:
- Discovery has indexed resources
- The Dashboard is on the expected graph source (
liveordemo) - The demo workspace was provisioned if you are using demo mode
Issue: Invalid or expired JWT token
Solution:
- Sign out and sign back in
- Clear stale browser session storage if needed
- Verify the production dashboard and API are using the same auth source
Issue: Chat has no semantic context
Solution:
- Confirm the API has
OPENAI_API_KEYconfigured - Confirm Chroma is reachable
- Redeploy the API so the semantic index sync runs
Issue: Performance degradation
Solution:
- Check system resources (CPU, memory)
- Optimize queries
- Consider graph-source filtering and smaller result sets