I\'m trying to get my local dev django app to work after following these instructions on adding env database settings.
https://devcenter.heroku.com/articles/django-injec
You can just add your dev settings to the default values like this...
import dj_database_url DATABASES = {'default': dj_database_url.config(default='postgres://foo:bar@localhost:5432/db')}