diff options
Diffstat (limited to 'chimere_example_project/settings.py')
-rw-r--r-- | chimere_example_project/settings.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/chimere_example_project/settings.py b/chimere_example_project/settings.py index 86b61e3..187d4ba 100644 --- a/chimere_example_project/settings.py +++ b/chimere_example_project/settings.py @@ -166,17 +166,17 @@ MANAGERS = ADMINS DATABASES = { 'default': { - 'NAME': 'ratatouille', + 'NAME': 'chimere', 'ENGINE': 'django.contrib.gis.db.backends.postgis', - 'HOST': 'localhost', + 'HOST': 'postgres', 'PORT': '5432', - 'USER': 'ratatouille', - 'PASSWORD': 'wiki', + 'USER': 'chimere', + 'PASSWORD': 'chimere', }, } -if 'test' in sys.argv: - SOUTH_TESTS_MIGRATE = False +# if 'test' in sys.argv: +# SOUTH_TESTS_MIGRATE = False # Local time zone for this installation. Choices can be found here: # http://www.postgresql.org/docs/8.1/static/datetime-keywords.html |