diff options
Diffstat (limited to '_deploy')
-rw-r--r-- | _deploy/debian/localsettingsserver.py (renamed from _deploy/old/localsettingsserver.py) | 7 | ||||
-rw-r--r-- | _deploy/docker/localsettingsdocker.py (renamed from _deploy/old/localsettingsdocker.py) | 0 | ||||
-rw-r--r-- | _deploy/potatohut/localsettingspotatohut.py (renamed from _deploy/old/localsettingspotatohut.py) | 1 | ||||
-rw-r--r-- | _deploy/ubuntu/localsettingsubuntu.py (renamed from _deploy/old/localsettingsubuntu.py) | 4 |
4 files changed, 10 insertions, 2 deletions
diff --git a/_deploy/old/localsettingsserver.py b/_deploy/debian/localsettingsserver.py index 79cd6ef..7379a3c 100644 --- a/_deploy/old/localsettingsserver.py +++ b/_deploy/debian/localsettingsserver.py @@ -16,7 +16,12 @@ it overwrites defaults in that file. print(" * importing troggle/localsettings.py") -# DO NOT check this file into the git repo - it contains real passwords. +# DO NOT check this file into the git repo - it contains real passwords. [not this copy] +SECRET_KEY = "zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz" +EXPOUSERPASS = "nope" +EXPOADMINUSERPASS = "nope" +EMAIL_HOST_PASSWORD = "nope" + DATABASES = { 'default': { diff --git a/_deploy/old/localsettingsdocker.py b/_deploy/docker/localsettingsdocker.py index 76cca3d..76cca3d 100644 --- a/_deploy/old/localsettingsdocker.py +++ b/_deploy/docker/localsettingsdocker.py diff --git a/_deploy/old/localsettingspotatohut.py b/_deploy/potatohut/localsettingspotatohut.py index 2e5c08b..184f0ab 100644 --- a/_deploy/old/localsettingspotatohut.py +++ b/_deploy/potatohut/localsettingspotatohut.py @@ -5,6 +5,7 @@ import sys # your/our password to the world! # This will ALL NEED TO BE CHANGED to match localsettingsWSL / python3 / Django v1.18.29 +# This WILL NOT WORK as it is for an earlier version of Django DATABASES = { diff --git a/_deploy/old/localsettingsubuntu.py b/_deploy/ubuntu/localsettingsubuntu.py index 74ebd3c..c348cd8 100644 --- a/_deploy/old/localsettingsubuntu.py +++ b/_deploy/ubuntu/localsettingsubuntu.py @@ -1,7 +1,9 @@ import sys # link localsettings to this file for use on expo computer in austria -# This will ALL NEED TO BE CHANGED to match localsettingsWSL / python3 / Django v1.18.29 +# This will ALL NEED TO BE CHANGED to match localsettingsWSL / python3 / Django v2.2 +# This WILL NOT WORK as it is for an earlier version of Django +# consult localsettingsWSL for updates required. DATABASES = { 'default': { |