16 lines
324 B
Makefile
Raw Normal View History

2025-01-17 22:06:17 +00:00
PYTHON=./.venv/bin/python
PIP=./.venv/bin/pip
2025-01-18 12:21:38 +00:00
APP=./.venv/bin/snek.serve
GUNICORN=./.venv/bin/gunicorn
GUNICORN_WORKERS = 1
2025-01-17 22:06:17 +00:00
PORT = 8081
install:
python3 -m venv .venv
$(PIP) install -e .
run:
2025-01-18 12:21:38 +00:00
$(GUNICORN) -w $(GUNICORN_WORKERS) -k aiohttp.worker.GunicornWebWorker snek.gunicorn:app --bind 0.0.0.0:$(PORT) --reload
2025-01-17 22:06:17 +00:00