feat: remove kivy frontend, add litestar

This commit is contained in:
cătălin 2024-12-12 12:22:34 +01:00
commit 6b873348c7
No known key found for this signature in database
48 changed files with 3092 additions and 800 deletions

View file

@ -1,9 +1,18 @@
PROJECT_NAME := "huesoporro"
PROJECT_TAG := "latest"
PROJECT_TARGET := "serve"
fmt:
uvx pre-commit run --all-files --color always
.PHONY: tests
tests:
uv run pytest --cov=halig -vv tests --report-log reportlog.json
uv run coverage html
uv run coverage xml
serve:
uv run python -m src.huesoporro.main
build:
docker build . -t git.roboces.dev/catalin/$(PROJECT_NAME):$(PROJECT_TAG) --target $(PROJECT_TARGET)