From 82b7fe70001cba6ac8a2bf6edfbbcbd8ab98e898 Mon Sep 17 00:00:00 2001 From: abutalib-kiwi Date: Thu, 7 Dec 2023 12:00:16 +0530 Subject: [PATCH] updated prod base url --- zod_bank/settings.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/zod_bank/settings.py b/zod_bank/settings.py index 068df15..f6af18c 100644 --- a/zod_bank/settings.py +++ b/zod_bank/settings.py @@ -58,10 +58,10 @@ if ENV in ['dev', 'qa', 'stage']: if ENV == "prod": CORS_ALLOWED_ORIGINS = [ # backend base url - "https://prod-api.zodqaapp.com", + "https://prod-api.zodbank.com", # frontend url - "https://zodqaapp.com", + "https://web.zodbank.com", # Add more trusted origins as needed ] @@ -208,7 +208,7 @@ AUTH_PASSWORD_VALIDATORS = [ # database query logs settings # Allows us to check db hits # useful to optimize db query and hit -LOGGING = { +LOGGING1 = { "version": 1, "filters": { "require_debug_true": {