Skip to content

Commit

Permalink
chore: remove locale env
Browse files Browse the repository at this point in the history
  • Loading branch information
tenzinsamten committed Jun 17, 2024
1 parent 90c9b61 commit fb48592
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sefaria/local_settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {}
Expand Down Expand Up @@ -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"


Expand Down

0 comments on commit fb48592

Please sign in to comment.