Base Templates

This commit is contained in:
2025-12-10 20:39:40 +01:00
commit 10dfdd5605
7 changed files with 120 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
.PHONY: all run test
SRC := ./src
VENV := .venv
RUNNER := $(VENV)/bin/python
TESTER := $(VENV)/bin/pytest
run:
$(RUNNER) $(SRC)/main.py
test:
$(TESTER) $(SRC)/main.py