Skip to content

Debugging Guide

AstronDaniel edited this page Dec 21, 2025 · 1 revision

πŸ› Debugging Guide

Troubleshooting Development Issues

Tools and tips for identifying and fixing bugs.


πŸ” Backend Debugging

  • Logs: Check uvicorn console output.
  • PDB: Use Python Debugger (import pdb; pdb.set_trace()) for breakpoints.
  • FastAPI Docs: Use Swagger UI at /docs to test endpoints manually.

πŸ–₯️ Frontend Debugging

  • React DevTools: Inspect component hierarchy and state.
  • Network Tab: Monitor API requests and responses in browser dev tools.
  • Console: Check for JavaScript errors and warnings.

← Back to Developer Docs

Clone this wiki locally