fix: use flask run --reload in dev target
All checks were successful
Build and Deploy PunktFri / build-and-deploy (push) Successful in 47s

This commit is contained in:
Henrik Jess Nielsen
2026-04-26 23:17:31 +02:00
parent 7a42b8bfa3
commit df27882c77

View File

@@ -12,7 +12,7 @@ install: $(VENV)/bin/activate
$(PIP) install --quiet -r requirements-dev.txt
run: install
PORT=9912 $(PYTHON) app.py
FLASK_APP=app.py FLASK_DEBUG=1 PORT=9912 $(VENV)/bin/flask run --host=0.0.0.0 --port=9912 --reload
test: install
$(PYTEST) tests/ -v