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.
17 lines
384 B
17 lines
384 B
from .base import *
|
|
|
|
# DJANGO_REDIS_IGNORE_EXCEPTIONS = True
|
|
DEBUG = True
|
|
|
|
CORS_ALLOW_ALL_ORIGINS = True
|
|
|
|
# CACHES = {
|
|
# 'default': {
|
|
# "BACKEND": "django.core.cache.backends.dummy.DummyCache",
|
|
# },
|
|
# 'memory': {
|
|
# 'BACKEND': 'django.core.cache.backends.locmem.LocMemCache',
|
|
# 'LOCATION': 'unique-snowflake',
|
|
# 'TIMEOUT': 5000,
|
|
# },
|
|
# }
|