Use dummy cache in dev mode
This commit is contained in:
parent
f8a963dd36
commit
7365eeacc8
1 changed files with 12 additions and 5 deletions
|
@ -107,6 +107,13 @@ if fail:
|
|||
|
||||
ADMIN_USERNAMES = []
|
||||
|
||||
if DEV_MODE and DEV_MODE == "LAPTOP":
|
||||
CACHES = {
|
||||
'default': {
|
||||
'BACKEND': 'django.core.cache.backends.dummy.DummyCache',
|
||||
}
|
||||
}
|
||||
else:
|
||||
CACHES = {
|
||||
'default': {
|
||||
'BACKEND': 'django.core.cache.backends.locmem.LocMemCache',
|
||||
|
|
Loading…
Reference in a new issue