Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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)
- Host: GitHub
- URL: https://github.com/asifpy/channels-examples
- Owner: asifpy
- Created: 2016-04-22T01:33:42.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-05-01T05:07:33.000Z (over 8 years ago)
- Last Synced: 2024-11-17T01:48:29.484Z (about 2 months ago)
- Language: Python
- Homepage:
- Size: 470 KB
- Stars: 0
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 votingThen, 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