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)