diff --git a/makefile b/makefile index 7d2ebc8..a456917 100644 --- a/makefile +++ b/makefile @@ -8,4 +8,7 @@ setup: run: @.venv/bin/python library/page.py +serve: + @cd library && ../.venv/bin/uwsgi --http 127.0.0.1:6666 --module page:APP + .PHONY: setup run