gitlab-api-ci-finder/config_parser.py
2023-06-15 15:48:33 +02:00

21 lines
573 B
Python

import yaml
import os
DEFAULT_CONFIG_FILE_NAME = "config.yml"
# if os.environ['ENV'] == 'prod':
# config_file_to_load = "config_prod.yml"
# else:
config_file_to_load = DEFAULT_CONFIG_FILE_NAME
BASE_FOLDER = os.path.dirname(os.path.abspath(__file__))
path_to_config = os.path.join(BASE_FOLDER, config_file_to_load)
print("opening config file " + path_to_config)
with open(path_to_config, "r") as yml_config_file:
cfg = yaml.load(yml_config_file, Loader=yaml.FullLoader)
# read values from config
token = cfg["token"]
prod_mode = cfg["prod"]