Metadata-Version: 2.0
Name: django-messaging-subscription
Version: 0.1.0
Summary: A RESTful API for managing messaging content, subscriptions and sending via Vumi-go
Home-page: https://github.com/westerncapelabs/django-messaging-subscription
Author: Western Cape Labs
Author-email: devops@westerncapelabs.com
License: BSD
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: System :: Networking
Requires-Dist: Django
Requires-Dist: django-tastypie
Requires-Dist: South
Requires-Dist: gunicorn (==19.0.0)
Requires-Dist: django-celery (==3.1.10)
Requires-Dist: go-http (==0.1.1)

django-messaging-subscription
================================

A RESTful API for managing messaging content, subscriptions and sending 
via Vumi-go


::

    $ virtualenv ve
    $ source ve/bin/activate
    (ve)$ pip install -r requirements.txt
    (ve)$ pip install -r requirements-dev.txt
    (ve)$ py.test --ds=testsettings subscription/tests.py --cov=subscription


Configuration
-------------------------------

The following configuration (with dummy values replaced by real ones) needs to
be added to ``settings.py`` to configure this app::

    INSTALLED_APPS = [
        # Usual Django stuff plus
        # Third-party apps
        'south',
        'tastypie',
        'djcelery',
        # Us
        'subscription'
    ]

    VUMI_GO_ACCOUNT_KEY = "replaceme"
    VUMI_GO_CONVERSATION_KEY = "replaceme"
    VUMI_GO_ACCOUNT_TOKEN = "replaceme"

    CELERY_ACCEPT_CONTENT = ['pickle']
    CELERY_TASK_SERIALIZER = 'pickle'
    CELERY_RESULT_SERIALIZER = 'pickle'
    CELERY_ALWAYS_EAGER = DEBUG



