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 /localsettingswindows.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 'localsettingswindows.py')
-rw-r--r-- | localsettingswindows.py | 15 |
1 files changed, 3 insertions, 12 deletions
diff --git a/localsettingswindows.py b/localsettingswindows.py index 110bd36..ed6f486 100644 --- a/localsettingswindows.py +++ b/localsettingswindows.py @@ -9,6 +9,8 @@ DATABASES = { } } +ALLOWED_HOSTS = ['*'] + EXPOUSER = 'expo' EXPOUSERPASS = 'realpasshere' EXPOUSER_EMAIL = 'wookey@wookware.org' @@ -30,7 +32,7 @@ URL_ROOT = 'http://127.0.0.1:8000' DIR_ROOT = ''#this should end in / if a value is given PUBLIC_SITE = False -TINY_MCE_MEDIA_ROOT = '/usr/share/tinymce/www/' +TINY_MCE_MEDIA_ROOT = '/usr/share/tinymce/www/' TINY_MCE_MEDIA_URL = URL_ROOT + DIR_ROOT + 'tinymce_media/' PYTHON_PATH = 'C:\\expoweb\\troggle\\' @@ -56,14 +58,3 @@ EMAIL_USE_TLS = True # URL that handles the media served from MEDIA_ROOT. Make sure to use a # trailing slash if there is a path component (optional in other cases). # Examples: "http://media.lawrence.com", "http://example.com/media/" - - - - -TEMPLATE_DIRS = ( - "C:/Expo/expoweb/troggle/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. -) |