Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/asifpy/channels-examples

Examples for channels (Django)
https://github.com/asifpy/channels-examples

Last synced: 6 days ago
JSON representation

Examples for channels (Django)

Awesome Lists containing this project

README

        

# Channels-Examples

This is an example app demonstrating how to use [Django Channels](http://channels.readthedocs.org/en/latest/).

Currently this project inccludes following two examples.

- Notification on object creation
- Real time voting

Then, to run:
- Create your seperate virtual env and activate it
- Install requirements: `pip install -r requirements.txt`
- Migrate: `manage.py migrate`
- Run server: `manage.py runserver
- check http://localhost:8000 in your browser

## TODO
- More examples
- Tests for consumers
- Deployment