Metadata-Version: 2.1
Name: django-stomp
Version: 0.0.4
Summary: A simple implementation of Stomp with Django
Home-page: https://github.com/juntossomosmais/django-stomp
Author: Ricardo Baltazar Chaves
Author-email: ricardobchaves6@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.7
Classifier: Framework :: Django :: 2.1
Classifier: Environment :: Web Environment
Classifier: Natural Language :: Portuguese (Brazilian)
Classifier: Development Status :: 4 - Beta
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# Django Stomp

A simple implementation of Stomp with Django

## Install

`pip install django_stomp`

Add `django_stomp` in your `INSTALLED_APPS`

## Configure

```
STOMP_SERVER_HOST = os.getenv("STOMP_SERVER_HOST")
STOMP_SERVER_PORT = os.getenv("STOMP_SERVER_PORT")
```

Optionals

```
STOMP_SERVER_USER = os.getenv("STOMP_SERVER_USER")
STOMP_SERVER_PASSWORD = os.getenv("STOMP_SERVER_PASSWORD")
STOMP_USE_SSL = str(os.getenv("STOMP_USE_SSL", True)).lower() in ("true",)
LISTENER_CLIENT_ID = os.getenv("LISTENER_CLIENT_ID")
```

