Resolve "evaluate uv"

This commit is contained in:
2025-04-21 17:39:20 +02:00
parent bb049441b4
commit 934ef826c9
366 changed files with 849 additions and 160 deletions
+17
View File
@@ -0,0 +1,17 @@
.PHONY: clean virtualenv test docker
clean:
find . -name '*.py[co]' -delete
virtualenv:
uv sync
@echo
@echo "VirtualENV Setup Complete. Now run: source env/bin/activate"
@echo
test:
pytest -v --cov --cov-report=term --cov-report=html:coverage-report
docker: clean
docker build -t kontor-api:latest .