Re: Chat app using django

2022-08-25 Thread Ryan Nowakowski
On Wed, Jul 20, 2022 at 06:11:08AM +0530, Lakshyaraj Dash wrote: > I'm having a discussion website in django with some sort of user > authentication and I want to inject chat app with rooms made by the users > themselves. I don't want any js framework in the frontend. Just tell me how > to make thi

Re: Chat app using django

2022-07-20 Thread carlos
Hello, this tutorial is very simple and explain complete chat example with django channels https://testdriven.io/blog/django-channels/ Cheers On Wed, Jul 20, 2022 at 5:59 AM Lakshyaraj Dash < dashlakshyaraj2...@gmail.com> wrote: > Great thanks Abdul. I can now easily build a chat app for my for

Re: Chat app using django

2022-07-20 Thread Lakshyaraj Dash
Great thanks Abdul. I can now easily build a chat app for my forum app. On Wed, Jul 20, 2022, 17:12 Abdul Qoyyuum wrote: > Please have a look at how Django channels implements the chat app. > https://github.com/narrowfail/django-channels-chat > > On Wed, Jul 20, 2022 at 7:23 PM Lakshyaraj Dash <

Re: Chat app using django

2022-07-20 Thread Abdul Qoyyuum
Please have a look at how Django channels implements the chat app. https://github.com/narrowfail/django-channels-chat On Wed, Jul 20, 2022 at 7:23 PM Lakshyaraj Dash < dashlakshyaraj2...@gmail.com> wrote: > Ok I understand but currently I'm using postgresql in my app. So I need it > for that. Ple

Re: Chat app using django

2022-07-20 Thread Lakshyaraj Dash
Ok I understand but currently I'm using postgresql in my app. So I need it for that. Please help me to inject the websockets in django as I'm very much new to it *not websockets* but to *integration of websockets in django*. On Wed, Jul 20, 2022, 08:28 Abdul Qoyyuum wrote: > Hi Lakshyaraj, > > C

Re: Chat app using django

2022-07-19 Thread Abdul Qoyyuum
Hi Lakshyaraj, Chat app relies on quickly sending data between parties. You will need to build it with websockets and a redis database to publish and subscribe new event messages. However, this is basically reinventing the wheel versus using one that already exists (i.e. Django Channels). But all