feat: initial commit

This commit is contained in:
nikola
2026-05-19 14:53:36 +02:00
commit 6536b5fa23
39 changed files with 2257 additions and 0 deletions
+20
View File
@@ -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