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