Backend
Code Structure
|
|---|
|
|
|
|
API
The OpenAPI schema is exposed by FastAPI:
/openapi.json/docs(Swagger UI)
Best Practices
Add routes in
backend/api/and then wire the router.Keep business logic in
backend/service/.Write pytest tests in
backend/tests/for each new feature.