pip install poetry
(or safer, follow the instructions: https://python-poetry.org/docs/#installation)- Install dependencies
cd
into the directory where thepyproject.toml
is located thenpoetry install
- [UNIX]: Run the FastAPI server via poetry with the bash script:
poetry run ./run.sh
- [WINDOWS]: Run the FastAPI server via poetry with the Python command:
poetry run python app/main.py
- Open http://localhost:8001/
To stop the server, press CTRL+C
If you get stuck, checkout the troubleshooting readme