summaryrefslogtreecommitdiffstats
path: root/localsettingsWSL.py
diff options
context:
space:
mode:
authorPhilip Sargent <philip.sargent@klebos.com>2021-04-03 00:33:55 +0100
committerPhilip Sargent <philip.sargent@klebos.com>2021-04-03 00:33:55 +0100
commit912e447200747a27a9504605b317e8f1ced35b10 (patch)
treec732f777ad30fc36583c4fefc5944a0624b692d6 /localsettingsWSL.py
parent52c1dabd0ea242b59047a596ebf7362fffac0a7f (diff)
downloadtroggle-912e447200747a27a9504605b317e8f1ced35b10.tar.gz
troggle-912e447200747a27a9504605b317e8f1ced35b10.tar.bz2
troggle-912e447200747a27a9504605b317e8f1ced35b10.zip
fix password import error
Diffstat (limited to 'localsettingsWSL.py')
-rw-r--r--localsettingsWSL.py11
1 files changed, 7 insertions, 4 deletions
diff --git a/localsettingsWSL.py b/localsettingsWSL.py
index 670533e..3a9a793 100644
--- a/localsettingsWSL.py
+++ b/localsettingsWSL.py
@@ -23,12 +23,13 @@ print(" * importing troggle/localsettings.py")
# - have you checked that credentials.py is in .gitignore ?
# - we don't want to have to change the expo system password !
#-----------------------------------------------------------------
-# default values, then get overwritten by real secrets imported from credentials.py
-EXPOUSERPASS = "nnn:gggggg"
-EMAIL_HOST_PASSWORD = "insert-real-email-password-here"
+# default values, real secrets imported from credentials.py
+# EXPOUSERPASS = "nnn:gggggg"
+# EMAIL_HOST_PASSWORD = "insert-real-email-password-here"
from credentials import EXPOUSERPASS
from credentials import EMAIL_HOST_PASSWORD
+
EXPOFILESREMOTE = False # if True, then re-routes urls in expofiles to remote sever. Tests are then less accurate.
#SECURE_SSL_REDIRECT = True # breaks 7 tests in test suite 301 not 200 (or 302) and runserver fails completely
@@ -163,5 +164,7 @@ REPOS_ROOT_PATH = os.fspath(REPOS_ROOT_PATH)
TEMPLATE_PATH = os.fspath(TROGGLE_PATH)
MEDIA_ROOT = os.fspath(MEDIA_ROOT)
JSLIB_ROOT = os.fspath(JSLIB_ROOT)
-
+JSLIB_ROOT = os.fspath(JSLIB_ROOT)
+JSLIB_ROOT = os.fspath(JSLIB_ROOT)
+SURVEY_SCANS = os.fspath(SURVEY_SCANS)
print(" + finished importing troggle/localsettings.py")