diff --git a/app/config/email.py.example b/app/config/config.py.example similarity index 100% rename from app/config/email.py.example rename to app/config/config.py.example diff --git a/app/db/__pycache__/__init__.cpython-34.pyc b/app/db/__pycache__/__init__.cpython-34.pyc deleted file mode 100644 index fcd275f..0000000 Binary files a/app/db/__pycache__/__init__.cpython-34.pyc and /dev/null differ diff --git a/app/main.py b/app/main.py index 4dfe233..dd18609 100644 --- a/app/main.py +++ b/app/main.py @@ -22,7 +22,7 @@ app.config['SECURITY_PASSWORD_HASH'] = 'pbkdf2_sha512' app.config['SECURITY_PASSWORD_SALT'] = 'xxxxxxxxxxxxxxxxxxxxxx' app.config['SECURITY_REGISTERABLE'] = True app.config['SECURITY_EMAIL_SENDER'] = 'pitstops@lusiardi.de' -app.config.from_object('config.email') +app.config.from_envvar('config') app.config.from_object(__name__) mail = Mail(app)