aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorGlandos <bugs-github@antipoul.fr>2021-06-06 14:30:52 +0200
committerGlandos <bugs-github@antipoul.fr>2021-06-06 15:13:21 +0200
commit74e222f1a1cbfc2fac102fefc1115e9d0a6586dc (patch)
tree86566065de2804457e698c9d32b5b2ee99d3d49e /Makefile
parenteff871e83c5a82d17f48d148257e6ac95c8470d3 (diff)
downloadihatemoney-mirror-74e222f1a1cbfc2fac102fefc1115e9d0a6586dc.zip
ihatemoney-mirror-74e222f1a1cbfc2fac102fefc1115e9d0a6586dc.tar.gz
ihatemoney-mirror-74e222f1a1cbfc2fac102fefc1115e9d0a6586dc.tar.bz2
remove usage of Flask-Script
Use flask.cli instead with compatibility layer for existing commands, such as "runserver".
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
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