From 5e544c4077d0671156f2f7d7bae82fbfd02c2be8 Mon Sep 17 00:00:00 2001 From: MrMurdog Date: Sun, 8 Feb 2026 07:50:04 +0100 Subject: [PATCH] docs(config): add server.yaml generator page and link from Quick Start Embed HTML generator page in docs. Includes back button to docs start page. Supports standard plugins/modules via schemas (AI-assisted). --- docu/docs/config-editor.html | 1340 ++++++++++++++++++++++++++++++++++ docu/mkdocs.yml | 1 + 2 files changed, 1341 insertions(+) create mode 100644 docu/docs/config-editor.html diff --git a/docu/docs/config-editor.html b/docu/docs/config-editor.html new file mode 100644 index 0000000..202fe6e --- /dev/null +++ b/docu/docs/config-editor.html @@ -0,0 +1,1340 @@ + + + + + + BOSWatch3 ServerConfig Editor + + + +
+
+
+

BOSWatch3 Server Config Editor

+
Client-seitig • YAML Import/Export • Router/Route Punkte • Module/Plugins Formulare || created with AI by MrMurdog
+
+
+ + + + + + +
+
+ +
+
+
+ Server-Konfiguration + bereit +
+
+
+ +
+
+ YAML + Import/Export +
+
+ + +
+
+ +
+
+ +
+
+
+ +
+ Beispiel-Startkonfig +
Klicke „Neu“ um diese Konfig zu laden.
+
server:
+  port: 8080
+  name: "BOSWatch3-Server"
+  useBroadcast: no
+  logging: false
+
+alarmRouter:
+  - "Default"
+
+router:
+  - name: "Default"
+    route:
+      - type: module
+        res: filter.modeFilter
+        name: "Filter FMS/POC"
+        config:
+          allowed:
+            - fms
+            - pocsag
+
+      - type: plugin
+        res: telegram
+        name: "Telegram"
+        config:
+          botToken: "BOT_TOKEN"
+          chatIds:
+            - "CHAT_ID"
+          parse_mode: "HTML"
+          message_pocsag: |
+            POCSAG Alarm:
+            RIC: {RIC} ({SRIC})
+            {MSG}
+
+
+ +
+ Self-Tests (Debug) +
Diese Tests laufen automatisch beim Start.
+
+ + Noch nicht ausgeführt +
+

+          
+
+
+
+
+ + + + \ No newline at end of file diff --git a/docu/mkdocs.yml b/docu/mkdocs.yml index 562c3b2..c2602dd 100644 --- a/docu/mkdocs.yml +++ b/docu/mkdocs.yml @@ -11,6 +11,7 @@ nav: - Konfiguration: config.md - BOSWatch benutzen: usage.md - Als Service einrichten: service.md + - Konfigurations Editor: config-editor.html - Informationen: - Server/Client Prinzip: information/serverclient.md - Broadcast Service: information/broadcast.md