diff --git a/Ernestophone/settings/common.py b/Ernestophone/settings/common.py index 31d6568..4c2539d 100644 --- a/Ernestophone/settings/common.py +++ b/Ernestophone/settings/common.py @@ -27,6 +27,8 @@ DBNAME = import_secret("DBNAME") DBUSER = import_secret("DBUSER") DBPASSWD = import_secret("DBPASSWD") +ACCOUNT_CREATION_PASS = import_secret("ACCOUNT_CREATION_PASS") + BASE_DIR = os.path.join( os.path.dirname(__file__), "..", ".." diff --git a/Ernestophone/settings/secret_example.py b/Ernestophone/settings/secret_example.py index 6b633af..3b198b4 100644 --- a/Ernestophone/settings/secret_example.py +++ b/Ernestophone/settings/secret_example.py @@ -5,3 +5,5 @@ SERVER_EMAIL = "ernesto@localhost" DBNAME = "ernesto" DBUSER = "ernesto" DBPASSWD = "YNp2rrXowJnDAFF3" + +ACCOUNT_CREATION_PASS = "dummy"