mirror of
https://github.com/jazzband/django-axes.git
synced 2026-04-29 11:14:45 +00:00
11 lines
192 B
Python
11 lines
192 B
Python
from __future__ import unicode_literals
|
|
|
|
from .test_settings import *
|
|
|
|
AXES_CACHE = 'axes'
|
|
|
|
CACHES = {
|
|
'axes': {
|
|
'BACKEND': 'django.core.cache.backends.locmem.LocMemCache'
|
|
}
|
|
}
|