summaryrefslogtreecommitdiffstats
path: root/localsettingswindows.py
diff options
context:
space:
mode:
authorSam Wenham <sam@wenhams.co.uk>2020-02-21 14:25:13 +0000
committerSam Wenham <sam@wenhams.co.uk>2020-02-21 14:25:13 +0000
commit978270b152e803f0a8f1fac09363cc9703812567 (patch)
treed43aa2f6d173c345e51a399c731017e11974cf3e /localsettingswindows.py
parent291e3baabf09ccfd063c54db18f5db9018152a11 (diff)
downloadtroggle-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.py15
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.
-)