fixed webui
This commit is contained in:
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user