From da54ca97aa0758cf21cdf5dae88d9f38ac8836b5 Mon Sep 17 00:00:00 2001 From: Marien Fressinaud Date: Thu, 30 Aug 2018 21:42:58 +0200 Subject: [PATCH] Add the server address and port on `make serve` Developers should not have to read the documentation to find where to point their browsers to access ihatemoney application. --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 4a3c7523..2b333daf 100644 --- a/Makefile +++ b/Makefile @@ -29,6 +29,7 @@ remove-install-stamp: update: remove-install-stamp install ## Update the dependencies serve: install ## Run the ihatemoney server + @echo 'Running ihatemoney on http://localhost:5000' $(PYTHON) -m ihatemoney.manage runserver test: $(DEV_STAMP) ## Run the tests