import sources from develop/0.1.0

This commit is contained in:
Thomas Peetz
2025-04-29 12:52:55 +02:00
parent 304005822c
commit 4c96de27db
976 changed files with 58265 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
.PHONY: clean virtualenv test docker
clean:
find . -name '*.py[co]' -delete
test:
DB_HOST=localhost uv run pytest -v --cov --cov-report=term --cov-report=html:coverage-report
docker: clean
docker build --target=production -t kontor-api -t kontor-api:0.1.0-SNAPSHOT .
dev:
MARIADB_SERVER=localhost uv run fastapi dev src/main.py --port 8008