Skip to content

Latest commit

 

History

History
31 lines (10 loc) · 342 Bytes

woosteelz.md

File metadata and controls

31 lines (10 loc) · 342 Bytes

Django channels 설치 및 튜토리얼

channels 3.0 기준 Python 3.6 +, Django 2.2 +

1.설치

  1. chat app 생성

python manage.py startapp chat

  1. channels Libraries 설치

python -m pip install -U channels

  1. settings.py에 앱 등록 및 ASGI_APPLICATION 등록
  2. chat / asgi.py 수정

2.