switched to environment variable for config file lookup
This commit is contained in:
parent
344db8d998
commit
9eb7ec7c8a
Binary file not shown.
|
@ -22,7 +22,7 @@ app.config['SECURITY_PASSWORD_HASH'] = 'pbkdf2_sha512'
|
||||||
app.config['SECURITY_PASSWORD_SALT'] = 'xxxxxxxxxxxxxxxxxxxxxx'
|
app.config['SECURITY_PASSWORD_SALT'] = 'xxxxxxxxxxxxxxxxxxxxxx'
|
||||||
app.config['SECURITY_REGISTERABLE'] = True
|
app.config['SECURITY_REGISTERABLE'] = True
|
||||||
app.config['SECURITY_EMAIL_SENDER'] = 'pitstops@lusiardi.de'
|
app.config['SECURITY_EMAIL_SENDER'] = 'pitstops@lusiardi.de'
|
||||||
app.config.from_object('config.email')
|
app.config.from_envvar('config')
|
||||||
app.config.from_object(__name__)
|
app.config.from_object(__name__)
|
||||||
|
|
||||||
mail = Mail(app)
|
mail = Mail(app)
|
||||||
|
|
Loading…
Reference in New Issue