diff options
Diffstat (limited to 'localsettingspotatohut.py')
-rw-r--r-- | localsettingspotatohut.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/localsettingspotatohut.py b/localsettingspotatohut.py index 976e61a..2322b3e 100644 --- a/localsettingspotatohut.py +++ b/localsettingspotatohut.py @@ -4,6 +4,9 @@ import sys # password and _don't_ check that file back to the repo as it exposes # your/our password to the world! +# This will ALL NEED TO BE CHANGED to match localsettingsWSL / python3 / Django v1.18.29 + + DATABASES = { 'default': { 'ENGINE': 'django.db.backends.mysql', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'. @@ -68,7 +71,7 @@ EMAIL_HOST = "smtp.gmail.com" EMAIL_HOST_USER = "cuccexpo@gmail.com" -EMAIL_HOST_PASSWORD = "khvtffkhvtff" +EMAIL_HOST_PASSWORD = "insert-real-email-password-here" EMAIL_PORT=587 |