From e24a70053d7eafce3a0ea8086e2a591e0a49e6cb Mon Sep 17 00:00:00 2001 From: Skylar Grant Date: Wed, 14 Aug 2024 19:08:06 -0400 Subject: [PATCH] Add config.json, nothing is sensitive in it, use .env --- .gitignore | 1 - src/assets/config.json | 21 +++++++++++++++++++++ 2 files changed, 21 insertions(+), 1 deletion(-) create mode 100644 src/assets/config.json diff --git a/.gitignore b/.gitignore index 8328a07..2601535 100644 --- a/.gitignore +++ b/.gitignore @@ -9,7 +9,6 @@ lerna-debug.log* .VSCodeCounter .vscode .vscode/* -config.json log.txt nohup.out data/config.db diff --git a/src/assets/config.json b/src/assets/config.json new file mode 100644 index 0000000..ba106ec --- /dev/null +++ b/src/assets/config.json @@ -0,0 +1,21 @@ +{ + "config": { + "mqtt": { + "address": "wd://broker-url:port", + "subscriptions": [ + { + "name": "igniter", + "topic": "hestia/status/igniter" + }, + { + "name": "exhaust", + "topic": "hestia/status/exhaust" + }, + { + "name": "auger", + "topic": "hestia/status/auger" + } + ] + } + } +} \ No newline at end of file