diff --git a/application/constants/constants.py b/application/constants/constants.py index 404ebe18b66f3f093068bab77d99764a15ee35a6..674c79e3315e91c01342ce50245a41d643ebf8d7 100644 --- a/application/constants/constants.py +++ b/application/constants/constants.py @@ -10,8 +10,14 @@ # @Description : """ + +# DEFAULT_CONFIG defines the path to the default configuration file. +# This path will be used if the configuration file is not explicitly specified by the environment variables. DEFAULT_CONFIG = 'config.yaml' +# ENV_CONFIG_MAP is a dictionary that maps different environments to their respective configuration file paths. +# The key is the environment name, and the value is the path to the configuration file for that environment. +# If additional environments are necessary, they can be added here. ENV_CONFIG_MAP = { 'PRODUCTION': 'production_config.yaml', 'DEVELOPMENT': 'config.yaml',