Add support for external config files (Fixes: #33)

This commit is contained in:
doobry 2019-10-24 14:08:48 +02:00
parent f544d94a8c
commit 05d40216ee
No known key found for this signature in database
GPG key ID: B336D1A4E1A12B24
3 changed files with 15 additions and 0 deletions

View file

@ -25,6 +25,7 @@ def create_app(test_config=None):
app.config['UPLOAD_FOLDER'] = './uploads/'
app.config['MAX_CONTENT_LENGTH'] = 16 * 1024 * 1024 # 16MB
app.config['CUSTOM_TEMPLATES_DIR'] = 'custom_templates'
app.config.from_object('config') # optionally load settings from config.py
app.jinja_loader = jinja2.ChoiceLoader([ # type: ignore
jinja2.FileSystemLoader(app.config['CUSTOM_TEMPLATES_DIR']),