Initial commit.

This commit is contained in:
2025-01-17 23:06:17 +01:00
commit 66f8942936
8 changed files with 533 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
PYTHON=./.venv/bin/python
PIP=./.venv/bin/pip
APP=./venv/bin/snek.serve
PORT = 8081
install:
python3 -m venv .venv
$(PIP) install -e .
run:
$(APP) --port=$(PORT)