initial commit

This commit is contained in:
Felix Rudat
2026-01-27 09:13:54 +01:00
commit 19d462a4aa
13 changed files with 1298 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
.PHONY: setup run build clean
setup:
uv venv
uv sync --dev
run:
uv run python scripts/planka_cli.py status
build:
uv run pyinstaller --onefile --name planka-cli scripts/planka_cli.py
clean:
rm -rf dist build *.spec __pycache__ scripts/__pycache__