From f855601217596a357c70ced6ce6b5a17167e854b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9my=20CHOMAZ?= Date: Sun, 1 Feb 2026 13:41:09 +0100 Subject: [PATCH] update the configuration file to be in unique file --- VNode/services/config/configuration.json | 30 ++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 VNode/services/config/configuration.json diff --git a/VNode/services/config/configuration.json b/VNode/services/config/configuration.json new file mode 100644 index 00000000..a930515f --- /dev/null +++ b/VNode/services/config/configuration.json @@ -0,0 +1,30 @@ +{ + "mqttHost": "mqtt://192.168.1.201", + "services": { + "score": { + "MQTTconfig": { + "mqttScoreTopic": "game/score", + "mqttScoreChangeTopic": "game/score/update" + } + }, + "quizzcollector": { + "MQTTconfig": { + "mqttQuizzCollectorListTopic": "game/quizz-collector/list", + "mqttQuizzCollectorCmdTopic": "game/quizz-collector/cmd" + } + } + }, + "hosts": { + "buzzers": { + "IP": { + "redBuzzerIP": "8.8.8.6", + "blueBuzzerIP": "8.8.8.8", + "greenBuzzerIP": "8.8.8.8", + "yellowBuzzerIP": "8.8.8.8" + }, + "MQTTconfig": { + "mqttTopic": "buzzer/watcher" + } + } + } +}