/channels-example

Code accompanying "Django Channels" blog post and screencast

Primary LanguagePythonOtherNOASSERTION

Django Channels Examples

Examples of asynchronous projects with Django Channels 2. Check https//arunrocks.com for the accompanying article and Youtube channel.

Setup

Use the pipenv tool

$ pip install pipenv
$ cd <proj-dir>
$ pipenv install

Now you need to enter the pipenv shell to run the examples:

$ pipenv shell
$ python manage.py migrate
$ python manage.py runserver