Skip to content
This repository was archived by the owner on Nov 16, 2020. It is now read-only.

Commit a17ff53

Browse files
committed
Initial commit
0 parents  commit a17ff53

17 files changed

+10078
-0
lines changed

.gitignore

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
.sw?
2+
.*.sw?
3+
*.beam
4+
/.erlang.mk/
5+
/cover/
6+
/deps/
7+
/doc/
8+
/ebin/
9+
/logs/
10+
/plugins/
11+
12+
/rabbitmq_web_mqtt_examples.d

CONTRIBUTING.md

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
## Overview
2+
3+
RabbitMQ projects use pull requests to discuss, collaborate on and accept code contributions.
4+
Pull requests is the primary place of discussing code changes.
5+
6+
## How to Contribute
7+
8+
The process is fairly standard:
9+
10+
* Fork the repository or repositories you plan on contributing to
11+
* Clone [RabbitMQ umbrella repository](https://github.com/rabbitmq/rabbitmq-public-umbrella)
12+
* `cd umbrella`, `make co`
13+
* Create a branch with a descriptive name in the relevant repositories
14+
* 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
15+
* Submit pull requests with an explanation what has been changed and **why**
16+
* Submit a filled out and signed [Contributor Agreement](https://github.com/rabbitmq/ca#how-to-submit) if needed (see below)
17+
* Be patient. We will get to your pull request eventually
18+
19+
If what you are going to work on is a substantial change, please first ask the core team
20+
of their opinion on [RabbitMQ mailing list](https://groups.google.com/forum/#!forum/rabbitmq-users).
21+
22+
23+
## (Brief) Code of Conduct
24+
25+
In one line: don't be a dick.
26+
27+
Be respectful to the maintainers and other contributors. Open source
28+
contributors put long hours into developing projects and doing user
29+
support. Those projects and user support are available for free. We
30+
believe this deserves some respect.
31+
32+
Be respectful to people of all races, genders, religious beliefs and
33+
political views. Regardless of how brilliant a pull request is
34+
technically, we will not tolerate disrespectful or aggressive
35+
behaviour.
36+
37+
Contributors who violate this straightforward Code of Conduct will see
38+
their pull requests closed and locked.
39+
40+
41+
## Contributor Agreement
42+
43+
If you want to contribute a non-trivial change, please submit a signed copy of our
44+
[Contributor Agreement](https://github.com/rabbitmq/ca#how-to-submit) around the time
45+
you submit your pull request. This will make it much easier (in some cases, possible)
46+
for the RabbitMQ team at Pivotal to merge your contribution.
47+
48+
49+
## Where to Ask Questions
50+
51+
If something isn't clear, feel free to ask on our [mailing list](https://groups.google.com/forum/#!forum/rabbitmq-users).

LICENSE

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
This package, the rabbitmq-web-mqtt-examples, is licensed under the
2+
MPL. For the MPL, please see LICENSE-MPL-RabbitMQ.
3+
4+
priv/mqttws31.js is a part of the Paho project
5+
(https://eclipse.org/paho/clients/js/) and is released under
6+
the EPL and the EDL.
7+
8+
If you have any questions regarding licensing, please contact us at
9+
info@rabbitmq.com.

LICENSE-MPL-RabbitMQ

Lines changed: 455 additions & 0 deletions
Large diffs are not rendered by default.

Makefile

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
PROJECT = rabbitmq_web_mqtt_examples
2+
3+
DEPS = rabbitmq_web_dispatch rabbitmq_web_mqtt
4+
5+
DEP_PLUGINS = rabbit_common/mk/rabbitmq-plugin.mk
6+
7+
# FIXME: Use erlang.mk patched for RabbitMQ, while waiting for PRs to be
8+
# reviewed and merged.
9+
10+
ERLANG_MK_REPO = https://github.com/rabbitmq/erlang.mk.git
11+
ERLANG_MK_COMMIT = rabbitmq-tmp
12+
13+
include rabbitmq-components.mk
14+
include erlang.mk

README.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
RabbitMQ-Web-MQTT-Examples plugin
2+
=================================
3+
4+
This project contains few basic examples of RabbitMq-Web-MQTT plugin
5+
usage.
6+
7+
Once installed the server will bind to port 15670 and serve few static
8+
html files from there:
9+
10+
* http://127.0.0.1:15670/
11+
12+
Installation
13+
------------
14+
15+
Generic build instructions are at:
16+
17+
* http://www.rabbitmq.com/plugin-development.html
18+
19+
Instructions on how to install a plugin into RabbitMQ broker:
20+
21+
* http://www.rabbitmq.com/plugins.html#installing-plugins

0 commit comments

Comments
 (0)