Commit be7084bb authored by 崔为之's avatar 崔为之 💪🏽

Update project

parent 0cb8c43e
...@@ -10,8 +10,14 @@ ...@@ -10,8 +10,14 @@
# @Description : # @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' 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 = { ENV_CONFIG_MAP = {
'PRODUCTION': 'production_config.yaml', 'PRODUCTION': 'production_config.yaml',
'DEVELOPMENT': 'config.yaml', 'DEVELOPMENT': 'config.yaml',
......
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