1. 환경세팅 pip install redis pip install channels pip install channels_redis 2. index.html 만들기 입장할 채팅방 이름: 3-1. chat-view from django.shortcuts import render def index(request): return render(request, 'chat/index.html') 3-2. chat -url from django.urls import path from chat.views import index from . import views urlpatterns = [ path('' , index , name='index'), ] 3-3. testchat-url """TESTCHAT URL Con..