diff options
Diffstat (limited to 'localsettingsubuntu.py')
-rw-r--r-- | localsettingsubuntu.py | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/localsettingsubuntu.py b/localsettingsubuntu.py index 5a1f944..fcc8a73 100644 --- a/localsettingsubuntu.py +++ b/localsettingsubuntu.py @@ -2,13 +2,13 @@ import sys # link localsettings to this file for use on expo computer in austria 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. + 'default': { + 'ENGINE': 'django.db.backends.mysql', # '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. } } @@ -30,7 +30,7 @@ SURVEY_SCANS = REPOS_ROOT_PATH + 'expoimages/' FILES = REPOS_ROOT_PATH + 'expoimages' -PYTHON_PATH = REPOS_ROOT_PATH + 'hg/troggle/' +PYTHON_PATH = REPOS_ROOT_PATH + 'troggle/' #URL_ROOT = 'http://127.0.0.1:8000' URL_ROOT = "http://expoweb/" |