I did this django channels tutoral to know how to make Chatting apps. I came to know how to build ASGI server using Django.
I assumed there are 2 users talking each other through this app.
pip install -r requirements.txt
python manage.py makemigrations
python manage.py migrate
// You need to install docker
docker run -p 6379:6379 -d redis:5
python manage.py runserver
// Connect to https://127.0.0.1:8000/chat/
