diff --git a/Makefile b/Makefile index a0d3f44..9f07247 100644 --- a/Makefile +++ b/Makefile @@ -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