At the top of settings.py I have:
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'NAME': 'dbname',
'USER': 'dbuser',
'PASSWORD': 'pw'
'HOST': '',
'PORT': '',
}
}
At the bottom I have:
try:
from local_settings import *
except ImportError:
pass
In the local_settings.py, I'd like to modify DATABASES['default']['host'] that is defined in the settings.py file.
Is this possible? If so, how? I don't want to duplicate the whole DATABASES setting, I just want to adjust the HOST (to point at another server).