From 565bc81f7f502f967a1c676f0f7375c382b678c2 Mon Sep 17 00:00:00 2001 From: Glandos Date: Sat, 18 Feb 2023 16:26:54 +0100 Subject: [PATCH] FLASK_ENV has been deprecated in Flask 2.2 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index dbf7f3b5..24f56f9c 100644 --- a/Makefile +++ b/Makefile @@ -38,7 +38,7 @@ update: remove-install-stamp install ## Update the dependencies .PHONY: serve serve: install ## Run the ihatemoney server @echo 'Running ihatemoney on http://localhost:5000' - FLASK_DEBUG=1 FLASK_ENV=development FLASK_APP=ihatemoney.wsgi $(VENV)/bin/flask run --host=0.0.0.0 + FLASK_DEBUG=1 FLASK_APP=ihatemoney.wsgi $(VENV)/bin/flask run --host=0.0.0.0 .PHONY: test test: install-dev ## Run the tests