diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..3c10e41 --- /dev/null +++ b/Makefile @@ -0,0 +1,13 @@ +.PHONY: format lint type test verify run +format: + ruff format . +lint: + ruff format --check . + ruff check . +type: + mypy app +test: + pytest -q +verify: lint type test +run: + uvicorn app.main:app --reload