You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have been able to set up the project. Have setup my chat index and user list in a Django chat app.
frontend code from example are in an app called chat of my django project.
I set up urls like this:
path('apps/chat/', include("chat.urls") ,name="chat-app"),
path(r'apps/chat/', include('django_private_chat2.urls', namespace='django_private_chat2')
When I visit chat and users_list ape endpoint in browser, I get results. but console is logging not found.
What I Did
Paste the command(s) you ran and the output.
If there was a crash, please include the traceback here.
The text was updated successfully, but these errors were encountered:
Hello, Including channels into the installed apps will start the Django channels server. and you need to add the chat app into your installed apps, and add the relevant paths to the urls file and relevant settings.
Description
Websocket connections sometimes connect but often doesn't. I Keep getting
WebSocket HANDSHAKING /chat_ws [127.0.0.1:50071]
WebSocket REJECT /chat_ws [127.0.0.1:50071]
WebSocket DISCONNECT /chat_ws [127.0.0.1:50071]
I have been able to set up the project. Have setup my chat index and user list in a Django chat app.
frontend code from example are in an app called chat of my django project.
I set up urls like this:
path('apps/chat/', include("chat.urls") ,name="chat-app"),
path(r'apps/chat/', include('django_private_chat2.urls', namespace='django_private_chat2')
When I visit chat and users_list ape endpoint in browser, I get results. but console is logging not found.
What I Did
The text was updated successfully, but these errors were encountered: