🔧(helm) fix the configuration environment

The configuration also defines the Sentry environment
value, which is currently "production" for every Sentry
event.

- dev: Local
- staging: Staging
- preprod: PreProduction
- prod: Production
This commit is contained in:
Quentin BEY
2024-12-04 15:23:21 +01:00
committed by BEY Quentin
parent d7c654e1aa
commit 632a96ccf4
5 changed files with 18 additions and 3 deletions

View File

@@ -790,6 +790,17 @@ class Feature(Production):
"""
class Local(Production):
"""
Local environment settings
This configuration is used by the developers to run the application
locally through the helm files (used for tilt)
nota bene: it should inherit from the Production environment.
"""
class Staging(Production):
"""
Staging environment settings