├── .gitignore ├── core ├── __init__.py ├── models.py ├── tests.py └── views.py ├── manage.py ├── nodejs ├── chat.js └── package.json └── realtime_tutorial ├── __init__.py ├── settings.py ├── templates └── index.html ├── urls.py └── wsgi.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburst/django-realtime-tutorial/HEAD/core/models.py -------------------------------------------------------------------------------- /core/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburst/django-realtime-tutorial/HEAD/core/tests.py -------------------------------------------------------------------------------- /core/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburst/django-realtime-tutorial/HEAD/core/views.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburst/django-realtime-tutorial/HEAD/manage.py -------------------------------------------------------------------------------- /nodejs/chat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburst/django-realtime-tutorial/HEAD/nodejs/chat.js -------------------------------------------------------------------------------- /nodejs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburst/django-realtime-tutorial/HEAD/nodejs/package.json -------------------------------------------------------------------------------- /realtime_tutorial/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /realtime_tutorial/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburst/django-realtime-tutorial/HEAD/realtime_tutorial/settings.py -------------------------------------------------------------------------------- /realtime_tutorial/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburst/django-realtime-tutorial/HEAD/realtime_tutorial/templates/index.html -------------------------------------------------------------------------------- /realtime_tutorial/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburst/django-realtime-tutorial/HEAD/realtime_tutorial/urls.py -------------------------------------------------------------------------------- /realtime_tutorial/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburst/django-realtime-tutorial/HEAD/realtime_tutorial/wsgi.py --------------------------------------------------------------------------------