Commit d86b72fc by Calen Pennington

Split REPOS data into separate file on aws

parent 7e06c72e
...@@ -33,7 +33,8 @@ LOGGING = get_logger_config(LOG_DIR, ...@@ -33,7 +33,8 @@ LOGGING = get_logger_config(LOG_DIR,
syslog_addr=(ENV_TOKENS['SYSLOG_SERVER'], 514), syslog_addr=(ENV_TOKENS['SYSLOG_SERVER'], 514),
debug=False) debug=False)
REPOS = ENV_TOKENS['REPOS'] with open(ENV_ROOT / "repos.json") as repos_file:
REPOS = json.load(repos_file)
############################## SECURE AUTH ITEMS ############################### ############################## SECURE AUTH ITEMS ###############################
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment