Add command to execute runserver_plus

This commit is contained in:
Roberto Rosario
2016-10-29 16:28:49 -04:00
parent ed7955f8e7
commit 1f648c5e86

View File

@@ -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