From 1f648c5e865a13689e6860e99a7c9bce9686cfc0 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Sat, 29 Oct 2016 16:28:49 -0400 Subject: [PATCH] Add command to execute runserver_plus --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile b/Makefile index 46e428f921..b1db15d2af 100644 --- a/Makefile +++ b/Makefile @@ -32,6 +32,7 @@ help: @echo "release - Package (sdist and wheel) and upload a release." @echo "runserver - Run the development server." + @echo "runserver_plus - Run the Django extension's development server." @echo "shell_plus - Run the shell_plus command." @echo "safety_check - Run a package safety check." @@ -115,6 +116,10 @@ runserver: $(BROWSER) http://127.0.0.1:8000 ./manage.py runserver +runserver_plus: + $(BROWSER) http://127.0.0.1:8000 + ./manage.py runserver_plus --settings=mayan.settings.development + shell_plus: ./manage.py shell_plus --settings=mayan.settings.development