diff options
author | expo <expo@expobox.potato.hut> | 2015-07-26 00:38:10 +0100 |
---|---|---|
committer | expo <expo@expobox.potato.hut> | 2015-07-26 00:38:10 +0100 |
commit | 58831117e903c362447d23bba06e51265787d015 (patch) | |
tree | 9ed26aea614f9d3c564a7bdaa58b108700c55427 /localsettingspotatohut.py | |
parent | a0244754469acdde47ac19503d87b92f0a3f6846 (diff) | |
download | troggle-58831117e903c362447d23bba06e51265787d015.tar.gz troggle-58831117e903c362447d23bba06e51265787d015.tar.bz2 troggle-58831117e903c362447d23bba06e51265787d015.zip |
properly quote JSLIB_PATH and mke clear that example password is just an example
Diffstat (limited to 'localsettingspotatohut.py')
-rw-r--r-- | localsettingspotatohut.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/localsettingspotatohut.py b/localsettingspotatohut.py index 5773816..a9c39d5 100644 --- a/localsettingspotatohut.py +++ b/localsettingspotatohut.py @@ -9,7 +9,7 @@ DATABASES = { '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': 'wibble', # Not used with sqlite3. + 'PASSWORD': 'notarealpassword', # 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. } @@ -44,7 +44,7 @@ MEDIA_URL = '/' + DIR_ROOT + 'site_media/' MEDIA_ROOT = REPOS_ROOT_PATH + '/troggle/media/' MEDIA_ADMIN_DIR = '/usr/lib/python2.7/site-packages/django/contrib/admin/media/' -JSLIB_PATH = /usr/share/javascript/ +JSLIB_PATH = '/usr/share/javascript/' TINY_MCE_MEDIA_ROOT = '/usr/share/tinymce/www/' TINY_MCE_MEDIA_URL = URL_ROOT + DIR_ROOT + 'tinymce_media/' |