From f54068fadd09437fb6ceece9a3426ed552dcb0b1 Mon Sep 17 00:00:00 2001 From: HAEKADI Date: Mon, 2 Sep 2024 16:38:38 +0200 Subject: [PATCH] fix: current env var --- app/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/config.py b/app/config.py index 2665e61d..f91e3acc 100644 --- a/app/config.py +++ b/app/config.py @@ -10,7 +10,7 @@ ELASTIC_USER = os.getenv("ELASTIC_USER") ELASTIC_URL = os.getenv("ELASTIC_URL") DSN_SENTRY = os.getenv("DSN_SENTRY") -CURRENT_ENV = os.getenv("CURRENT_ENV", "dev") +CURRENT_ENV = os.getenv("ENV", "dev") APM_URL = os.getenv("APM_URL") BASE_DIR = pathlib.Path(__file__).parent OPEN_API_PATH = BASE_DIR / "doc" / "open-api.yml"