Update readme

This commit is contained in:
Andros Fenollosa 2025-01-24 09:42:52 +01:00
parent aad8c7f415
commit 0fdabb2ab4

View File

@ -3,7 +3,15 @@
This is a template for building APIs with Clean Architecture. It contains two examples of APIs built with FastAPI and Flask. This is a template for building APIs with Clean Architecture. It contains two examples of APIs built with FastAPI and Flask.
- `src` contains the source code. - `src` contains the source code.
- `src/core`: business logic (use cases, entities, decorators...).
- `src/infra`: implementations of the interfaces defined in the core.
- `src/infra/api/fastapi`: FastAPI implementation.
- `src/infra/api/flask`: Flask implementation.
- `src/infra/storage/`: Fake storage implementation.
## Requirements
- Docker
## Prepare ## Prepare