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