aboutsummaryrefslogtreecommitdiff
path: root/budget/run.py
diff options
context:
space:
mode:
Diffstat (limited to 'budget/run.py')
-rw-r--r--budget/run.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/budget/run.py b/budget/run.py
index bdb8f46..1e5fe59 100644
--- a/budget/run.py
+++ b/budget/run.py
@@ -1,3 +1,4 @@
+import os
import warnings
from flask import Flask, g, request, session
@@ -14,7 +15,8 @@ app = Flask(__name__)
def configure():
""" A way to (re)configure the app, specially reset the settings
"""
- app.config.from_object("default_settings")
+ config_obj = os.environ.get('FLASK_SETTINGS_MODULE', 'merged_settings')
+ app.config.from_object(config_obj)
app.wsgi_app = PrefixedWSGI(app)
# Deprecations