add ACCOUNT_CREATION_PASS to secret.py
This commit is contained in:
parent
9401cded60
commit
cd37e16a6c
2 changed files with 4 additions and 0 deletions
|
@ -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__), "..", ".."
|
||||
|
|
|
@ -5,3 +5,5 @@ SERVER_EMAIL = "ernesto@localhost"
|
|||
DBNAME = "ernesto"
|
||||
DBUSER = "ernesto"
|
||||
DBPASSWD = "YNp2rrXowJnDAFF3"
|
||||
|
||||
ACCOUNT_CREATION_PASS = "dummy"
|
||||
|
|
Loading…
Reference in a new issue