django-websocket-redis
django-websocket-redis copied to clipboard
chatserver example templates in Django 1.8+
From Django 1.8 and onwards the TEMPLATE_* settings are depricated in settings.py, and will raise a TemplateDoesNotExist exception on those versions of Django. The following can be replaced:
TEMPLATE_DEBUG = ...
TEMPLATE_CONTEXT_PROCESSORS = ...
TEMPLATE_LOADERS = ...
with the following
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [],
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
'django.template.context_processors.debug',
'django.template.context_processors.request',
'django.contrib.auth.context_processors.auth',
'django.contrib.messages.context_processors.messages',
'ws4redis.context_processors.default',
],
},
},
]
Thanks, it would be great, if you can provide a tested pull request.