chore: add project scaffold

This commit is contained in:
2026-07-14 09:32:38 +03:30
commit b33716863b
9 changed files with 294 additions and 0 deletions

20
Makefile Normal file
View File

@@ -0,0 +1,20 @@
.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