mirror of
https://github.com/django/daphne.git
synced 2025-11-02 08:37:34 +03:00
17 lines
253 B
Python
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 = []
|