After looking around I have come up with the following code this seems to work well I was wondering what others have come up with and feedback would be great.
settings/init.py
import sys
import socket
# try to import settings file based on machine name.
try:
settings = sys.modules[__name__]
host_settings_module_name = '%s' % (socket.gethostname().replace('.', '_'))
host_settings = __import__(host_settings_module_name, globals(), locals(), ['*'], -1)
# Merge imported settings over django settings
for key in host_settings.__dict__.keys():
if key.startswith('_'): continue #skip privates and __internals__
settings.__dict__[key] = host_settings.__dict__[key]
except Exception, e:
print e
from settings.site import *
settings/base.py
BASE = 1
SITE = 1
LOCAL = 1
settings/site.py //project specific
from settings.base import *
SITE = 2
LOCAL = 2
settings/machine_name_local.py //machine specific settings for developers or host server
from settings.site import *
LOCAL = 3
I think that while your code probably works, it's unnecessarily complicated. Complicated code is rarely a good thing because it's hard to debug, and your settings module in the last place you want to introduce errors in your Django project.
It's easier to have a
settings.py
file, with all settings for the production server plus settings common to all development machines and have alocal_settings.py
imported at the bottom of it. Thelocal_settings.py
would then be where the developers add settings specific to their machines.settings.py:
local_settings.py
Just remember not to upload the
local_settings.py
on the production server, and if you are using a VCS, to configure it such that thelocal_settings.py
file is ignored.