From 665b814641a2729b44f275d53c41a9f0d63afdcd Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Mon, 24 Oct 2016 18:43:14 -0400 Subject: [PATCH] Add shell_plus command to the makefile --- Makefile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Makefile b/Makefile index 7645214f2b..f2513c0b07 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 "shell_plus - Run the shell_plus command." # Cleaning @@ -111,3 +112,8 @@ wheel: clean runserver: $(BROWSER) http://127.0.0.1:8000 ./manage.py runserver + +shell_plus: + ./manage.py shell_plus --settings=mayan.settings.development + +