From 789e3510fc6b14a470a7f3a041989d009e67bc26 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dieter=20Schl=C3=BCter?= Date: Sun, 21 Jun 2026 15:56:33 +0200 Subject: [PATCH] chore: Pfade auf ~/my_voice_assistant_v3 umstellen (Repo-Umzug v2 -> v3) systemd-Unit-Vorlage + Doku-Pfade auf den neuen flachen Pfad angepasst. Co-Authored-By: Claude Opus 4.8 --- BEDIENUNGSANLEITUNG.md | 2 +- Docs/voice-assistant-architecture.md | 2 +- deploy/voice-assistant.user.service | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/BEDIENUNGSANLEITUNG.md b/BEDIENUNGSANLEITUNG.md index f03cbb0..2a0aa62 100644 --- a/BEDIENUNGSANLEITUNG.md +++ b/BEDIENUNGSANLEITUNG.md @@ -135,7 +135,7 @@ pip install -e .[local] # installiert faster-whisper + piper-tts ### 2.2 Installation ```bash -cd voice-assistant-scaffold +cd my_voice_assistant_v3 python3 -m venv .venv source .venv/bin/activate pip install -U pip diff --git a/Docs/voice-assistant-architecture.md b/Docs/voice-assistant-architecture.md index 580a247..15b3e49 100644 --- a/Docs/voice-assistant-architecture.md +++ b/Docs/voice-assistant-architecture.md @@ -261,7 +261,7 @@ Verschlüsselung at-rest/in-transit, Löschkonzept, Einwilligung — „privacy ## 10. Verzeichnisstruktur (Ist) ```text -voice-assistant-scaffold/ +my_voice_assistant_v3/ ├── app/ │ ├── main.py # FastAPI-App + Router-Registrierung │ ├── config.py # Settings, TOML-Profile, Präzedenz diff --git a/deploy/voice-assistant.user.service b/deploy/voice-assistant.user.service index 2fab452..5d54725 100644 --- a/deploy/voice-assistant.user.service +++ b/deploy/voice-assistant.user.service @@ -18,8 +18,8 @@ After=network.target [Service] Type=simple -WorkingDirectory=/home/dschlueter/my_voice_assistant_v2/voice-assistant-scaffold -ExecStart=/home/dschlueter/my_voice_assistant_v2/voice-assistant-scaffold/.venv/bin/uvicorn app.main:app --host 0.0.0.0 --port 8003 +WorkingDirectory=/home/dschlueter/my_voice_assistant_v3 +ExecStart=/home/dschlueter/my_voice_assistant_v3/.venv/bin/uvicorn app.main:app --host 0.0.0.0 --port 8003 Restart=always RestartSec=2