Reactjs – React and Django connection with channel setup – WebSocket connection failed
I'ved tried to setup Django with channels to provide notification to React. https://github.com/axilaris/react-django-channels <-- I have put my project code here. in backend/backend/settings.py INSTALLED_APPS = [ .. 'channels', ] CHANNEL_LAYERS = { 'default': { 'BACKEND': 'channels.layers.InMemoryChannelLayer' } } ASGI_APPLICATION =…