missing CACHES value...

This commit is contained in:
Aurélien Delobelle 2017-04-10 19:07:19 +02:00
parent 2c40838938
commit ab31c20649

View file

@ -115,6 +115,15 @@ USE_L10N = True
USE_TZ = True
# Cache system
CACHES = {
'default': {
'BACKEND': 'django.core.cache.backends.memcached.MemcachedCache',
'LOCATION': '127.0.0.1:11211',
}
}
# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/1.8/howto/static-files/