mirror of
https://github.com/django/daphne.git
synced 2025-10-29 06:47:32 +03:00
37 lines
901 B
Python
37 lines
901 B
Python
# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
|
|
import os
|
|
|
|
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
|
|
|
|
SECRET_KEY = '-3yt98bfvxe)7+^h#(@8k#1(1m_fpd9x3q2wolfbf^!r5ma62u'
|
|
|
|
DEBUG = True
|
|
|
|
INSTALLED_APPS = (
|
|
'django.contrib.auth',
|
|
'django.contrib.contenttypes',
|
|
'django.contrib.sessions',
|
|
'channels',
|
|
)
|
|
|
|
ROOT_URLCONF = 'testproject.urls'
|
|
|
|
WSGI_APPLICATION = 'testproject.wsgi.application'
|
|
|
|
DATABASES = {
|
|
'default': {
|
|
'ENGINE': 'django.db.backends.sqlite3',
|
|
'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
|
|
}
|
|
}
|
|
|
|
CHANNEL_BACKENDS = {
|
|
"default": {
|
|
"BACKEND": "channels.backends.database.DatabaseChannelBackend",
|
|
"ROUTING": "testproject.urls.channel_routing",
|
|
},
|
|
}
|
|
|
|
if os.environ.get("USEREDIS", None):
|
|
CHANNEL_BACKENDS['default']['BACKEND'] = "channels.backends.redis_py.RedisChannelBackend"
|