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-injection
I followed the instructions but get the following error when my app tries to access the local database
Request Method: GET Request URL: http://localhost:8000 Django Version: 1.4 Exception Type: ImproperlyConfigured Exception Value: You need to specify NAME in your Django settings file.
My database settings originally,
DATABASES = { 'default': { 'ENGINE': 'django.db.backends.postgresql_psycopg2', 'NAME': 'db', # Or path to database file if using sqlite3. 'USER': 'foo', # Not used with sqlite3. 'PASSWORD': 'bar', # Not used with sqlite3. 'HOST': 'localhost', 'PORT': '5432', } }
the heroku article says to add the following to the settings file
import dj_database_url DATABASES = {'default': dj_database_url.config(default='postgres://localhost')}
how do I get dj_database_url.config to use my my dev settings when the DATABASE_URL is not available in dev?
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')}
Use this in your settings.py:
DATABASES = {'default': dj_database_url.config(default=os.environ['DATABASE_URL'])}
and in your .env file have this:
DATABASE_URL=postgres://localhost/yourdbname
when you launch with "foreman start" it will look at the .env file and create all those environment variables, just like running on Heroku itself. Type "heroku config" to confirm that you have a DATABASE_URL set, which you should if you added the postgres database addon.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With