diff options
author | Javier Sánchez Parra <jsanchez@soleta.eu> | 2022-09-02 13:44:32 +0200 |
---|---|---|
committer | Javier Sánchez Parra <jsanchez@soleta.eu> | 2022-09-27 09:48:36 +0200 |
commit | 07c5cb25d2281d2253729ecc7b7b40efdf6db140 (patch) | |
tree | e585cdcadf18579eb50caec144995927538cc927 /ogcp/__init__.py | |
parent | 083cb7af7fd35ac2e61192a4f6fe0137a1642ca0 (diff) |
Store configuration file path on a global variable
Otherwise, users may change the file path on one place of the code and
forget to change the other places.
Diffstat (limited to 'ogcp/__init__.py')
-rw-r--r-- | ogcp/__init__.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ogcp/__init__.py b/ogcp/__init__.py index 5d5f3e4..58de9a4 100644 --- a/ogcp/__init__.py +++ b/ogcp/__init__.py @@ -11,8 +11,10 @@ from flask_babel import Babel from flask import Flask from os import urandom +ogcp_cfg_path = 'cfg/ogcp.json' + app = Flask(__name__) -app.config.from_json('cfg/ogcp.json') +app.config.from_json(ogcp_cfg_path) app.secret_key = urandom(16) babel = Babel(app) |