diff options
author | Philip Sargent <philip.sargent@gmail.com> | 2025-02-07 15:12:21 +0000 |
---|---|---|
committer | Philip Sargent <philip.sargent@gmail.com> | 2025-02-07 15:12:21 +0000 |
commit | 28d24e48de55e5e41ad238e0c6bb29f57c899c71 (patch) | |
tree | b5dfc458101352ca431a96e7aa82cfa82ce33e49 /settings.py | |
parent | 7c8253dcfc02e1793a543081c43103328fb8f5a3 (diff) | |
download | troggle-28d24e48de55e5e41ad238e0c6bb29f57c899c71.tar.gz troggle-28d24e48de55e5e41ad238e0c6bb29f57c899c71.tar.bz2 troggle-28d24e48de55e5e41ad238e0c6bb29f57c899c71.zip |
tidy settigs PATHs
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 |