Defines the folder structure and organization for a FastAPI project
This skill defines how to organize a FastAPI backend using a modular structure.
project_root/ ├── main.py ├── configuration/ │ └── settings.py ├── backend/ │ ├── init.py │ ├── auth.py │ ├── models.py │ ├── controllers/ │ │ ├── init.py │ │ ├── health_controller.py │ │ ├── <domain>_controller.py │ ├── responses/ │ └── utils/ ├── tests/ │ └── test_endpoints.py └── requirements.txt