daphne/channels/tests/settings.py
2016-04-04 03:34:05 +02:00

17 lines
253 B
Python

SECRET_KEY = 'cat'
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
}
}
CHANNEL_LAYERS = {
'default': {
'BACKEND': 'asgiref.inmemory.ChannelLayer',
'ROUTING': [],
},
}
MIDDLEWARE_CLASSES = []