Create a virtual environment, please. This is important. You need to do this otherwise I'll be mad
python -m venv .venvActivate the virtual environment
windows
./.venv/Scripts/activatemac/linux
. ./.venv/bin/activateInstall dependancies
If you are cool and using uv
uv syncIf you are not cool and have not installed uv
pip install -r requirements.txtRun it
flask runTest it
Open localhost:5000 in your browser