docs: add BEDIENUNGSANLEITUNG.md and INSTALL_FROM_ARCHIVE.md

Vollständige deutschsprachige Bedienungsanleitung (Installation, Konfiguration,
alle fünf Aktionen, Prompt-Quellen, Antwort-/Reasoning-Steuerung, Netzwerk/
Sicherheit, GPU/Kontext, Exit-Codes, Fehlersuche, Tests) sowie eine Anleitung
zur Installation aus dem .tar.gz-Archiv.

build_archive.py: beide Anleitungen in INCLUDE_FILES + REQUIRED_FILES (werden
gepackt und verifiziert).

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
Dieter Schlüter 2026-07-06 17:48:39 +02:00
commit b8ea6545f8
3 changed files with 401 additions and 0 deletions

View file

@ -72,6 +72,8 @@ REQUIRED_FILES = [
"tests/test_actions.py",
"docs/How_to_use.md",
"scripts/smoke.sh",
"BEDIENUNGSANLEITUNG.md",
"INSTALL_FROM_ARCHIVE.md",
]
# Top-level directories to include wholesale (in addition to REQUIRED_FILES),
@ -85,6 +87,8 @@ INCLUDE_FILES = [
"requirements-dev.txt",
"llama.cpp.config.example",
"build_archive.py",
"BEDIENUNGSANLEITUNG.md",
"INSTALL_FROM_ARCHIVE.md",
]
EXCLUDE_DIR_NAMES = {"__pycache__", ".pytest_cache", ".venv", "venv", ".git", "*.egg-info"}