The purpose of this tool is to connect a "device" with the IOT-Hub, using certificate-based authentication and MQTT.
- Copy the
.env.example
file in the root directory to a file called.env
- Replace the values for
IOTHUB_URL
andIOTHUB_BROKER
with real data - (Optional) Enter message templates for producing messages from the "device" to the IOT Hub
yarn install
yarn start
docker build -t <some_name>
Note that you need to replace IOTHUB_URL with the url to your IoT-Hub installation
docker run -p 8080:8080 -e "IOTHUB_URL=$IOTHUB_URL" -e "IOTHUB_BROKER=tls://$IOTHUB_URL:8883" <some_name>
Then navigate your browser to: http://localhost:8080/iot-hubber/
We are happy to receive contributions. Before you make a Pull Request, please check the open issues for a topic you want to get involved in. If you open a Pull Request with something of your own initiative, that's fine too, but bear in mind that the Pull Request may be closed if we don't consider it relevant at the moment.