diff options
Diffstat (limited to 'settings.py')
-rw-r--r-- | settings.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/settings.py b/settings.py index 22dd31e..d9c836b 100644 --- a/settings.py +++ b/settings.py @@ -19,14 +19,14 @@ if HOSTNAME == "expo": # print(">>>>running on expo.survex.com<<<<") DEVSERVER = False else: - print(">>>>running on dev machine<<<<") + print(f">>>>running on dev machine {HOSTNAME} <<<<") DEVSERVER = True EPOCH = date.fromisoformat('1970-01-01') -# default value, then gets overwritten by real secrets -SECRET_KEY = "not-the-real-secret-key-a#vaeozn0---^fj!355qki*vj2" +# secrets are imported in localsettings.py from secret_credentials import * +# SECRET_KEY =... # executables: GIT = "git" # command for running git |