Add SERVER_EMAIL to the secrets

This commit is contained in:
Martin Pépin 2017-08-08 00:25:13 +01:00
parent 81f3d6ab81
commit a6b0c51d39
2 changed files with 2 additions and 0 deletions

View file

@ -30,6 +30,7 @@ def import_secret(name):
SECRET_KEY = import_secret("SECRET_KEY")
ADMINS = import_secret("ADMINS")
SERVER_EMAIL = import_secret("SERVER_EMAIL")
DBNAME = import_secret("DBNAME")
DBUSER = import_secret("DBUSER")

View file

@ -1,5 +1,6 @@
SECRET_KEY = 'q()(zn4m63i%5cp4)f+ww4-28_w+ly3q9=6imw2ciu&_(5_4ah'
ADMINS = None
SERVER_EMAIL = "root@vagrant"
DBUSER = "cof_gestion"
DBNAME = "cof_gestion"