36
change your asgi.py
to this:
import os
import django
from channels.routing import get_default_application
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'tabulator.settings')
django.setup()
application = get_default_application()
2
You need to change your asgi.py according to this
# mysite/asgi.py
import os
from channels.auth import AuthMiddlewareStack
from channels.routing import ProtocolTypeRouter, URLRouter
from django.core.asgi import get_asgi_application
import chat.routing
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "mysite.settings")
application = ProtocolTypeRouter({
"http": get_asgi_application(),
"websocket": AuthMiddlewareStack(
URLRouter(
chat.routing.websocket_urlpatterns
)
),
})
- [Django]-Reference list item by index within Django template?
- [Django]-In a Django QuerySet, how to filter for "not exists" in a many-to-one relationship
- [Django]-What does error mean? : "Forbidden (Referer checking failed – no Referer.):"
-1
change your asgi.py
as @ahmad says and edit your settings.py
to this:
CHANNEL_LAYERS = {
"default": {
'BACKEND': 'channels_redis.core.RedisChannelLayer',
'CONFIG': {
"hosts": [("redis", 6379)],
},
},
}
and be sure that DEBUG = False
. That is because you are not running your project on local server it it will throw an error if you use "127.0.0.1"
or "localhost"
.
- [Django]-Django admin: override delete method
- [Django]-How to set or get a cookie value in django
- [Django]-Django template system, calling a function inside a model
Source:stackexchange.com