fixed webui

This commit is contained in:
Matthias Hinrichs
2026-01-29 22:24:24 +01:00
parent 10de822d44
commit 92a77ee944
3 changed files with 38 additions and 6 deletions
+32 -4
View File
@@ -8,10 +8,38 @@ Dies ist der Client-Teil des Home-Bro Projekts, der auf einem Raspberry Pi läuf
- Bildaufnahme (Snapshot) via Webcam
- Upload zum Brain (FastAPI)
- Audio-Wiedergabe der sarkastischen Kommentare
- Web-UI zur Konfiguration (Brain URL, Wake-Word, Picovoice Key)
## Installation
1. Repository klonen.
2. `pip install -r requirements.txt`
3. `.env` Datei basierend auf `.env.example` erstellen.
4. Starten: `python app/main.py`
1. **Repository klonen**:
```bash
git clone git@git.hnrx.net:homelab/home-bro-client.git
cd home-bro-client
```
2. **Virtuelle Umgebung erstellen & aktivieren**:
```bash
python3 -m venv venv
source venv/bin/activate
```
3. **Abhängigkeiten installieren**:
```bash
pip install -r requirements.txt
```
4. **Konfiguration**:
`.env` Datei basierend auf `.env.example` erstellen oder später über das Web-UI konfigurieren.
5. **Starten**:
```bash
python app/main.py
```
6. **Web-UI aufrufen**:
Öffne `http://<pi-ip>:8080` in deinem Browser.