This repository has been archived by the owner on Nov 16, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit a17ff53
Showing
17 changed files
with
10,078 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
.sw? | ||
.*.sw? | ||
*.beam | ||
/.erlang.mk/ | ||
/cover/ | ||
/deps/ | ||
/doc/ | ||
/ebin/ | ||
/logs/ | ||
/plugins/ | ||
|
||
/rabbitmq_web_mqtt_examples.d |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
## Overview | ||
|
||
RabbitMQ projects use pull requests to discuss, collaborate on and accept code contributions. | ||
Pull requests is the primary place of discussing code changes. | ||
|
||
## How to Contribute | ||
|
||
The process is fairly standard: | ||
|
||
* Fork the repository or repositories you plan on contributing to | ||
* Clone [RabbitMQ umbrella repository](https://github.com/rabbitmq/rabbitmq-public-umbrella) | ||
* `cd umbrella`, `make co` | ||
* Create a branch with a descriptive name in the relevant repositories | ||
* Make your changes, run tests, commit with a [descriptive message](http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html), push to your fork | ||
* Submit pull requests with an explanation what has been changed and **why** | ||
* Submit a filled out and signed [Contributor Agreement](https://github.com/rabbitmq/ca#how-to-submit) if needed (see below) | ||
* Be patient. We will get to your pull request eventually | ||
|
||
If what you are going to work on is a substantial change, please first ask the core team | ||
of their opinion on [RabbitMQ mailing list](https://groups.google.com/forum/#!forum/rabbitmq-users). | ||
|
||
|
||
## (Brief) Code of Conduct | ||
|
||
In one line: don't be a dick. | ||
|
||
Be respectful to the maintainers and other contributors. Open source | ||
contributors put long hours into developing projects and doing user | ||
support. Those projects and user support are available for free. We | ||
believe this deserves some respect. | ||
|
||
Be respectful to people of all races, genders, religious beliefs and | ||
political views. Regardless of how brilliant a pull request is | ||
technically, we will not tolerate disrespectful or aggressive | ||
behaviour. | ||
|
||
Contributors who violate this straightforward Code of Conduct will see | ||
their pull requests closed and locked. | ||
|
||
|
||
## Contributor Agreement | ||
|
||
If you want to contribute a non-trivial change, please submit a signed copy of our | ||
[Contributor Agreement](https://github.com/rabbitmq/ca#how-to-submit) around the time | ||
you submit your pull request. This will make it much easier (in some cases, possible) | ||
for the RabbitMQ team at Pivotal to merge your contribution. | ||
|
||
|
||
## Where to Ask Questions | ||
|
||
If something isn't clear, feel free to ask on our [mailing list](https://groups.google.com/forum/#!forum/rabbitmq-users). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
This package, the rabbitmq-web-mqtt-examples, is licensed under the | ||
MPL. For the MPL, please see LICENSE-MPL-RabbitMQ. | ||
|
||
priv/mqttws31.js is a part of the Paho project | ||
(https://eclipse.org/paho/clients/js/) and is released under | ||
the EPL and the EDL. | ||
|
||
If you have any questions regarding licensing, please contact us at | ||
info@rabbitmq.com. |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
PROJECT = rabbitmq_web_mqtt_examples | ||
|
||
DEPS = rabbitmq_web_dispatch rabbitmq_web_mqtt | ||
|
||
DEP_PLUGINS = rabbit_common/mk/rabbitmq-plugin.mk | ||
|
||
# FIXME: Use erlang.mk patched for RabbitMQ, while waiting for PRs to be | ||
# reviewed and merged. | ||
|
||
ERLANG_MK_REPO = https://github.com/rabbitmq/erlang.mk.git | ||
ERLANG_MK_COMMIT = rabbitmq-tmp | ||
|
||
include rabbitmq-components.mk | ||
include erlang.mk |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
RabbitMQ-Web-MQTT-Examples plugin | ||
================================= | ||
|
||
This project contains few basic examples of RabbitMq-Web-MQTT plugin | ||
usage. | ||
|
||
Once installed the server will bind to port 15670 and serve few static | ||
html files from there: | ||
|
||
* http://127.0.0.1:15670/ | ||
|
||
Installation | ||
------------ | ||
|
||
Generic build instructions are at: | ||
|
||
* http://www.rabbitmq.com/plugin-development.html | ||
|
||
Instructions on how to install a plugin into RabbitMQ broker: | ||
|
||
* http://www.rabbitmq.com/plugins.html#installing-plugins |
Oops, something went wrong.