mirror of
https://github.com/BOSWatch/BW3-Core.git
synced 2025-12-06 07:12:04 +01:00
- Neues CLI-Interface via argparse für flexible Steuerung - Unterstützt Dry-Run-Modus zur sicheren Vorschau - Sprachumschaltung via --lang (de/en) - Internationalisierung aller Ausgaben via `t()` und `TEXT`-Dict (Deutsch/Englisch) - Logging mit farbiger Terminalausgabe und Logdatei (log/install/) - YAML-Validierung und Service-Typ-Erkennung (client/server) - Interaktive Benutzerführung für (De)Installation von Services - Verbesserte Fehlerbehandlung und Nutzerabfragen mit Fallback - DOKU: - Install.md (Installation von BW3) ergänzt - Service.md (für Install as a Service-Skript) zweisprachig (Deutsch/Englisch) ergänzt - mkdocs um Seiten Install/Service/Usage.md ergänzt
48 lines
1.3 KiB
YAML
48 lines
1.3 KiB
YAML
site_name: BOSWatch3 Core
|
|
site_author: Bastian Schroll & BW3 Dev team
|
|
|
|
repo_url: https://github.com/BOSWatch/BW3-Core
|
|
edit_uri: edit/develop/docu/docs/
|
|
|
|
nav:
|
|
# - BW3: index.md
|
|
- Quick Start:
|
|
- Installation: install.md
|
|
- Konfiguration: config.md
|
|
- BOSWatch benutzen: usage.md
|
|
- Als Service einrichten: service.md
|
|
- Informationen:
|
|
- Server/Client Prinzip: information/serverclient.md
|
|
- Broadcast Service: information/broadcast.md
|
|
# - Modul/Plugin Konzept: tbd.md
|
|
- Routing Mechanismus: information/router.md
|
|
- Changelog: changelog.md
|
|
- Module:
|
|
- Descriptor: modul/descriptor.md
|
|
- Geocoding: modul/geocoding.md
|
|
- Mode Filter: modul/mode_filter.md
|
|
- Regex Filter: modul/regex_filter.md
|
|
- Double Filter: modul/double_filter.md
|
|
- Plugins:
|
|
- Http: plugin/http.md
|
|
- Telegram: plugin/telegram.md
|
|
- Divera: plugin/divera.md
|
|
- MySQL: plugin/mysql.md
|
|
- Entwickler:
|
|
- Eigenes Modul/Plugin schreiben: develop/ModulPlugin.md
|
|
- BOSWatch Alarmpaket Format: develop/packet.md
|
|
- BW3 Quellcode Dokumentation: api/html/index.html
|
|
|
|
|
|
use_directory_urls: false
|
|
|
|
theme:
|
|
name: mkdocs
|
|
highlightjs: true
|
|
hljs_style: github
|
|
|
|
extra_css:
|
|
- stylesheets/extra.css
|
|
|
|
markdown_extensions:
|
|
- attr_list |