An utterly fantastic project starter template for Django 3.0.
- Production-ready configuration for Static Files, Database Settings, Gunicorn, etc.
- Enhancements to Django's static file serving functionality via WhiteNoise.
- Latest Python 3.8.3 runtime environment.
To use this project, follow these steps:
- Create your working environment.
- Install Django (
$ pipenv install django
) - Create a new project using this template
Create a new Django app is easy::
$ django-admin.py startproject --name=Procfile helloworld
(If this doesn't work on windows, replace django-admin.py
with django-admin
)
You can replace
helloworld
with your desired project name.
$ git init
$ git add -A
$ git commit -m "Initial commit"
$ heroku create
$ git push heroku master
$ heroku run python manage.py migrate
See also, a ready-made application, ready to deploy.