diff options
author | Sam Wenham <sam@wenhams.co.uk> | 2020-02-21 14:25:13 +0000 |
---|---|---|
committer | Sam Wenham <sam@wenhams.co.uk> | 2020-02-21 14:25:13 +0000 |
commit | 978270b152e803f0a8f1fac09363cc9703812567 (patch) | |
tree | d43aa2f6d173c345e51a399c731017e11974cf3e /localsettingsserver.py | |
parent | 291e3baabf09ccfd063c54db18f5db9018152a11 (diff) | |
download | troggle-978270b152e803f0a8f1fac09363cc9703812567.tar.gz troggle-978270b152e803f0a8f1fac09363cc9703812567.tar.bz2 troggle-978270b152e803f0a8f1fac09363cc9703812567.zip |
Remove dud settings
allow any site for dev
Diffstat (limited to 'localsettingsserver.py')
-rw-r--r-- | localsettingsserver.py | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/localsettingsserver.py b/localsettingsserver.py index 259974e..58bc1a9 100644 --- a/localsettingsserver.py +++ b/localsettingsserver.py @@ -1,6 +1,6 @@ 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 +# password and _don't_ check that file back to the repo as it exposes # your/our password to the world! DATABASES = { @@ -14,6 +14,8 @@ DATABASES = { } } +ALLOWED_HOSTS = ['*'] + EXPOUSER = 'expo' EXPOUSERPASS = 'realpasshere' EXPOUSER_EMAIL = 'wookey@wookware.org' @@ -55,13 +57,6 @@ JSLIB_URL = URL_ROOT + 'javascript/' TINY_MCE_MEDIA_ROOT = STATIC_ROOT + '/tiny_mce/' TINY_MCE_MEDIA_URL = STATIC_ROOT + '/tiny_mce/' -TEMPLATE_DIRS = ( - PYTHON_PATH + "templates", - # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates". - # Always use forward slashes, even on Windows. - # Don't forget to use absolute paths, not relative paths. -) - LOGFILE = '/home/expo/troggle/troggle_log.txt' FEINCMS_ADMIN_MEDIA='/site_media/feincms/' |