@@ -0,0 +1,20 @@
.PHONY: fmt lint test build up down
fmt:
ruff format src/ tests/
lint:
ruff check src/ tests/
mypy src/ --ignore-missing-imports
test:
pytest -q tests/
build:
docker compose build
up:
docker compose up -d
down:
docker compose down
The note is not visible to the blocked user.