Page Menu
Home
Software Heritage
Search
Configure Global Search
Log In
Files
F7124671
D1182.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Subscribers
None
D1182.diff
View Options
diff --git a/swh/web/config.py b/swh/web/config.py
--- a/swh/web/config.py
+++ b/swh/web/config.py
@@ -1,8 +1,10 @@
-# Copyright (C) 2017-2018 The Software Heritage developers
+# Copyright (C) 2017-2019 The Software Heritage developers
# See the AUTHORS file at the top-level directory of this distribution
# License: GNU Affero General Public License version 3, or any later version
# See top-level LICENSE file for more information
+import os
+
from swh.core import config
from swh.storage import get_storage
from swh.indexer.storage import get_indexer_storage
@@ -92,12 +94,23 @@
def get_config(config_file='web/web'):
- """Read the configuration file `config_file`, update the app with
- parameters (secret_key, conf) and return the parsed configuration as a
- dict. If no configuration file is provided, return a default
- configuration."""
+ """Read the configuration file `config_file`.
+
+ If an environment variable SWH_CONFIG_FILENAME is defined, this
+ takes precedence over the config_file parameter.
+
+ In any case, update the app with parameters (secret_key, conf)
+ and return the parsed configuration as a dict.
+
+ If no configuration file is provided, return a default
+ configuration.
+
+ """
if not swhweb_config:
+ config_filename = os.environ.get('SWH_CONFIG_FILENAME')
+ if config_filename:
+ config_file = config_filename
cfg = config.load_named_config(config_file, DEFAULT_CONFIG)
swhweb_config.update(cfg)
config.prepare_folders(swhweb_config, 'log_dir')
@@ -105,7 +118,8 @@
swhweb_config['vault'] = get_vault(**swhweb_config['vault'])
swhweb_config['indexer_storage'] = \
get_indexer_storage(**swhweb_config['indexer_storage'])
- swhweb_config['scheduler'] = get_scheduler(**swhweb_config['scheduler']) # noqa
+ swhweb_config['scheduler'] = get_scheduler(
+ **swhweb_config['scheduler'])
return swhweb_config
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Dec 21 2024, 4:56 PM (11 w, 4 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3222166
Attached To
D1182: swh.web.config: Allow configuration through environment variable
Event Timeline
Log In to Comment