.PHONY: proto test lint typecheck compose-up compose-down

proto:
	python -m gapido_auth.tools.generate_proto

test:
	pytest

lint:
	ruff check .

typecheck:
	mypy

compose-up:
	docker compose up --build

compose-down:
	docker compose down --remove-orphans

