Merge pull request #6 from case/patch-1

Support loading config via env var
This commit is contained in:
Dongmei Cao 2020-09-25 09:19:24 -07:00 committed by GitHub
commit 7b49a2fde2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -12,9 +12,13 @@ from do_http_get import do_get
##############################################################################################################
try:
config_file = open("config.json", "r")
config = json.load(config_file)
config_file.close()
if 'CZDS_CONFIG' in os.environ:
config_data = os.environ['CZDS_CONFIG']
config = json.loads(config_data)
else:
config_file = open("config.json", "r")
config = json.load(config_file)
config_file.close()
except:
sys.stderr.write("Error loading config.json file.\n")
exit(1)