From 2d67b69b42bfa233d75d2c1734dbb7c8aab88871 Mon Sep 17 00:00:00 2001 From: Egor fureunoir Gorbunov Date: Tue, 13 May 2025 02:53:15 +0300 Subject: [PATCH] Features: ; Fixes: ; Extra: 1) Update environment variable values to "development" and "production" for clarity; --- evibes/settings/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/evibes/settings/base.py b/evibes/settings/base.py index ab5727d5..3e029fab 100644 --- a/evibes/settings/base.py +++ b/evibes/settings/base.py @@ -316,7 +316,7 @@ if getenv("SENTRY_DSN"): level=logging.INFO, event_level=logging.ERROR ), CeleryIntegration(), RedisIntegration()], - environment="dev" if DEBUG else "prod", + environment="development" if DEBUG else "production", debug=DEBUG, release=f"evibes@{EVIBES_VERSION}", ignore_errors=ignore_errors,