add ACCOUNT_CREATION_PASS to secret.py

This commit is contained in:
Martin Pépin 2017-10-15 16:34:39 +02:00
parent 9401cded60
commit cd37e16a6c
2 changed files with 4 additions and 0 deletions

View file

@ -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__), "..", ".."

View file

@ -5,3 +5,5 @@ SERVER_EMAIL = "ernesto@localhost"
DBNAME = "ernesto"
DBUSER = "ernesto"
DBPASSWD = "YNp2rrXowJnDAFF3"
ACCOUNT_CREATION_PASS = "dummy"