mirror of
https://github.com/jazzband/django-axes.git
synced 2026-03-16 22:30:23 +00:00
11 lines
234 B
Python
11 lines
234 B
Python
from __future__ import unicode_literals
|
|
|
|
from .test_settings import * # pylint: disable=unused-wildcard-import
|
|
|
|
AXES_CACHE = 'axes'
|
|
|
|
CACHES = {
|
|
'axes': {
|
|
'BACKEND': 'django.core.cache.backends.locmem.LocMemCache'
|
|
}
|
|
}
|