Starting a new Django project can be a pain. Gotta get static files working, gotta get stuff ready for test deploys.
- Set a new
SECRET_KEY
inproject/settings.py
(TODO: Create a new manage.py command to automate this) - Edit the Database settings in
.env
to best suit your needs
This project comes bundled with a simple Procfile
and .env
so it plays nice with tools like
Foreman or honcho
out of the box. This also makes deploying to a service like Heroku super
simple.
- To start your local webserver you can:
foreman start
or
honcho start