You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

24 lines
690 B

from .base import *
# DJANGO_REDIS_IGNORE_EXCEPTIONS = True
DEBUG = True
CORS_ALLOW_ALL_ORIGINS = True
# Explicitly enable Unfold Studio in development mode
UNFOLD_STUDIO_ENABLE_SAVE = True
UNFOLD_STUDIO_ENABLE_FILEUPLOAD = True
UNFOLD_STUDIO_ALWAYS_OPEN = True
# Allow all authenticated users to access the studio in development mode
UNFOLD_STUDIO_PERMISSION = lambda request: request.user.is_authenticated
# CACHES = {
# 'default': {
# "BACKEND": "django.core.cache.backends.dummy.DummyCache",
# },
# 'memory': {
# 'BACKEND': 'django.core.cache.backends.locmem.LocMemCache',
# 'LOCATION': 'unique-snowflake',
# 'TIMEOUT': 5000,
# },
# }