APIs for food ordering system
- Python3.8.2
- Pip
- Poetry (Python Package Manager)
python -m venv venv
source venv/bin/activate
make install
make run
make deploy
make test
Files related to application are in the app
or tests
directories.
Application parts are:
app
├── api - web related stuff.
│ └── routes - web routes.
├── core - application configuration, startup events, logging.
├── models - pydantic models for this application.
├── services - logic that is not just crud related.
└── main.py - FastAPI application creation and configuration.
│
tests - pytest