Installation

Dependencies

django-mease uses Redis PUB/SUB to publish messages asynchronously between Django and Tornado WebSocket server.

Debian/Ubuntu:

sudo apt-get install redis-server python-dev

Install using pip

Install the latest stable release using pip:

pip install django-mease

Add django-mease to your installed apps

Enable django-mease by adding mease to settings.INSTALLED_APPS:

INSTALLED_APPS = (
    # [...] Your list of installed apps
    'mease',
)