- Python >= 3.10
- Install dependencies
pip install -r ./requirements.txt
- Run the API
python -m hypercorn --bind '127.0.0.1:8008' --worker-class=trio 'api/main:app_factory()'
- Create venv
python -m venv .venv
- Activate venv
a. On Windows
.venv\Scripts\activate
b. Linux/MacOSsource .venv/bin/activate
- Install dependencies
pip install -r ./requirements.txt
- Run the API
python -m hypercorn --bind '127.0.0.1:8008' --worker-class=trio 'api/main:app_factory()'
docker compose up