We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01a2015 commit ec46959Copy full SHA for ec46959
dashboard/config.py
@@ -57,6 +57,10 @@ def from_file(self, config_file):
57
:param config_file: a string pointing to the location of the config-file
58
"""
59
60
+ config = os.getenv('DASHBOARD_CONFIG')
61
+ if config:
62
+ config_file = config
63
+
64
parser = configparser.RawConfigParser()
65
try:
66
parser.read(config_file)
0 commit comments