django-boilerplate
Starting new django projects made easy.
Prerequisites
To run the server locally, all you need is docker and GNU Make.
Initializing a new django project
make start-django-project APP_NAME=<your_app_name_goes_here>
Starting the service
make start
Open http://localhost:8080/ in your browser to verify that your new Django project is up and running.
Getting rid of the boilerplate init code
make eject-django-project APP_NAME=<your_app_name_goes_here>
Stopping the service
make stop