2
0
mirror of https://expo.survex.com/repositories/troggle/.git synced 2025-12-15 09:27:16 +00:00

Don't put passwords in the repo

This commit is contained in:
expo
2015-06-24 04:41:50 +01:00
parent ee66e1dd8d
commit 4e57af79d4
3 changed files with 8 additions and 3 deletions

View File

@@ -1,11 +1,15 @@
import sys
# This is an example file. Copy it to localsettings.py, set the
# password and _don't_ check that file back to the repo as it exposes
# your/our password to the world!
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': '161:gosser', # Not used with sqlite3.
'PASSWORD': 'wibble', # 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.
}
@@ -16,6 +20,7 @@ sys.path.append(REPOS_ROOT_PATH)
sys.path.append(REPOS_ROOT_PATH + 'troggle')
PUBLIC_SITE = True
FIX_PERMISSIONS = ["sudo", "/usr/local/bin/fix_permissions"]
SURVEX_DATA = REPOS_ROOT_PATH + 'loser/'
TUNNEL_DATA = REPOS_ROOT_PATH + 'tunneldata/'