https://github.com/reubenmiller/tedge-tapedeck
Hackathon topic: record tedge mqtt messages and replay them
https://github.com/reubenmiller/tedge-tapedeck
Last synced: 3 months ago
JSON representation
Hackathon topic: record tedge mqtt messages and replay them
- Host: GitHub
- URL: https://github.com/reubenmiller/tedge-tapedeck
- Owner: reubenmiller
- License: apache-2.0
- Created: 2023-06-14T09:22:36.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-06-14T15:07:01.000Z (almost 2 years ago)
- Last Synced: 2025-03-06T03:35:10.364Z (3 months ago)
- Language: Shell
- Size: 18.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# tedge-flight-recorder
Hackathon topic: record tedge mqtt messages and replay them## Getting started
**Pre-requisites**
To be able to run this example you need the following:
* [just](https://just.systems/man/en/chapter_5.html)
* docker
* docker compose (v2)### Starting the device where the recording will be done against
1. Checkout the repository
1. Create a .env file
```sh
touch .env
```And then add the following content
```sh
DEVICE_ID=myunqiuedeviceid
```2. Start the device demo (where the recorder will be activated on)
```sh
just up-device
```3. Bootstrap the device (so that it can talk with Cumulocity IoT)
```sh
just bootstrap
```