From fb4859223c4c0fc3691f70c14f70814bc64e145a Mon Sep 17 00:00:00 2001 From: tenzinsamten Date: Mon, 17 Jun 2024 15:16:08 +0530 Subject: [PATCH] chore: remove locale env --- sefaria/local_settings.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sefaria/local_settings.py b/sefaria/local_settings.py index 52b2878283..719be84d4e 100644 --- a/sefaria/local_settings.py +++ b/sefaria/local_settings.py @@ -52,7 +52,7 @@ } } } -DATABASES=PROD_DATABASES if os.getenv('isLocale') is None else LOCAL_DATABASE +DATABASES = PROD_DATABASES # Map domain to an interface language that the domain should be pinned to. # Leave as {} to prevent language pinning, in which case one domain can serve either Hebrew or English DOMAIN_LANGUAGES = {} @@ -125,7 +125,7 @@ 'BACKEND': 'django.core.cache.backends.dummy.DummyCache', }, } -CACHES = PROD_CACHES if os.getenv('isLocale') is None else LOCAL_CACHES +CACHES = PROD_CACHES SITE_PACKAGE = "sites.sefaria"