From 74e222f1a1cbfc2fac102fefc1115e9d0a6586dc Mon Sep 17 00:00:00 2001 From: Glandos Date: Sun, 6 Jun 2021 14:30:52 +0200 Subject: remove usage of Flask-Script Use flask.cli instead with compatibility layer for existing commands, such as "runserver". --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 30de0dd..2e8c18f 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' - $(PYTHON) -m ihatemoney.manage runserver + $(PYTHON) -m ihatemoney.manage run .PHONY: test test: install-dev ## Run the tests -- cgit v1.1