# install python 3.12
curl -sSL https://install.python-poetry.org | python3.12 -
# install poetry
python3.12 -m pip install --user poetry
poetry install
poetry run uvicorn src.main:app --port 4001 --reload
poetry run ruff check src --fix && poetry run ruff format src
poetry run mypy src && poetry run ruff check src && poetry run ruff format src --check
poetry run coverage run --source=src -m pytest && poetry run coverage report --show-missing