Files
kontor/kontor-api/Makefile
T
2025-04-21 17:39:20 +02:00

18 lines
312 B
Makefile

.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 .