37👍
You might want to look into foreman
(GitHub) or honcho
(GitHub). Both of these look for a .env
file in your current directory from which to load local environment variables.
My .env
looks like this for most projects (I use dj-database-url for database configuration):
DATABASE_URL=sqlite://localhost/local.db
SECRET_KEY=<a secret key>
DEBUG=True
In your settings.py
file, you can load these settings from os.environ
like this:
import os
DEBUG = os.environ.get('DEBUG', False)
If there are required settings, you can assert
their presence before trying to set them:
assert 'SECRET_KEY' in os.environ, 'Set SECRET_KEY in your .env file!'
SECRET_KEY = os.environ['SECRET_KEY']
I’ve been using this method of handling local settings for the last few projects I’ve started and I think it works really well. One caveat is to never commit your .env
to source control. These are local settings that exist only for the current configuration and should be recreated for a different environment.
7👍
I see the question changed slightly, the original answers are still below but this one has a slightly different answer:
First, make sure you are using the right settings.py (print 'This file is being loaded'
should do the trick).
Second, personally I would advise against using json files for config since it is less dynamic than Python files, but it should work regardless.
My recommended way of doing something like this:
- create a
base_settings.py
file with your standard settings - create a
settings.py
which will be your default settings import. This file should have afrom base_settings import *
at the top to inherit the base settings. - If you want to have a custom settings file,
dotcloud_settings.py
for example, simply add thefrom dotcloud_settings import settings
(orbase_settings
) and set the environment variableDJANGO_SETTINGS_MODULE
todotcloud_settings
oryour_project.dotcloud_settings
depending on your setup.
Do note that you should be very careful with importing Django modules from these settings files. If any module does a from django.conf import settings
it will stop parsing your settings after that point.
As for using json files, roughly the same principle of course:
- Once again, make sure you don’t have anything that imports
django.conf.settings
here -
Make all of the variables within your json file global to your settings file:
import json
with open(‘/home/dotcloud/environment.json’) as f:
env = json.load(f)
# A little hack to make all variables within our env global
globals().update(env)
Regardless though, I’d recommend turning this around and letting the settings file import this module instead.
Also, Django doesn’t listen to environment variables by default (besides the DJANGO_SETTINGS_MODULE
so that might be the problem too.
- Python requests return file-like object for streaming
- How to combine django plus gevent the basics?
- Get a list of python packages used by a Django Project