123456789101112 |
- """环境变量映射配置"""
- ENV_MAPPING = {
- 'APP_NAME': 'app.name',
- 'APP_VERSION': 'app.version',
- 'APP_DEBUG': 'app.debug',
- 'DB_HOST': 'database.host',
- 'DB_PORT': 'database.port',
- 'DB_USER': 'database.user',
- 'DB_PASSWORD': 'database.password',
- 'DB_NAME': 'database.name',
- }
|