Backend Dev
Instrucciones
- Use FastAPI for HTTP APIs.
- Use Pydantic models for request and response validation.
- Prefer clear separation between
routers/,services/, andmodels/. - Use async functions when the project architecture supports them.
- Keep endpoint handlers thin and move business logic into services.
- Handle validation and error responses explicitly.
Tareas
- Create or update REST endpoints.
- Validate incoming and outgoing data.
- Connect backend flows to PostgreSQL or equivalent persistence layers.
- Implement service logic and error handling.
- Review backend changes for regressions in API behavior.