diff options
author | wookey <devnull@localhost> | 2013-07-06 09:28:39 +0100 |
---|---|---|
committer | wookey <devnull@localhost> | 2013-07-06 09:28:39 +0100 |
commit | 9f5f5fb61651f79312c2af3c73963a333e10c769 (patch) | |
tree | b2ae79d02f08ca21d695b2a316302d89b93bcb86 | |
parent | 64f4e122a519ed1a1c3b462f20a41af555a42cec (diff) | |
download | troggle-9f5f5fb61651f79312c2af3c73963a333e10c769.tar.gz troggle-9f5f5fb61651f79312c2af3c73963a333e10c769.tar.bz2 troggle-9f5f5fb61651f79312c2af3c73963a333e10c769.zip |
Put correct user for mysql on seagrass back into config (It was accidentally overwritten in recent changes)
-rw-r--r-- | localsettingsserver.py | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/localsettingsserver.py b/localsettingsserver.py index 1123f04..949da3c 100644 --- a/localsettingsserver.py +++ b/localsettingsserver.py @@ -4,11 +4,11 @@ sys.path.append("/home/expo/troggle") DATABASES = { 'default': { 'ENGINE': 'django.db.backends.mysql', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'. - 'NAME': 'troggle', # Or path to database file if using sqlite3. - 'USER': 'expo', # Not used with sqlite3. - 'PASSWORD': 'gosser', # Not used with sqlite3. - 'HOST': '', # Set to empty string for localhost. Not used with sqlite3. - 'PORT': '', # Set to empty string for default. Not used with sqlite3. + 'NAME': 'troggle', # Or path to database file if using sqlite3. + 'USER': 'undemocracy', # Not used with sqlite3. + 'PASSWORD': 'aiGohsh5', # Not used with sqlite3. + 'HOST': '', # Set to empty string for localhost. Not used with sqlite3. + 'PORT': '', # Set to empty string for default. Not used with sqlite3. } } @@ -30,8 +30,6 @@ FILES = '/home/expo/expoimages' EXPOWEB_URL = 'http://expo.survex.com/' -MMMMC_DIR = "/home/expo/mmmc" - SURVEYS_URL = 'http://expo.survex.com/survey_scans/' PYTHON_PATH = '/home/expo/troggle/' |