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