Initial commit: homelab configs, Docker, Neo4j, voice control, Gitea
This commit is contained in:
@@ -0,0 +1,44 @@
|
||||
# Home Assistant Voice Control — configuratie
|
||||
# Kopieer dit bestand naar .env en vul je eigen waarden in
|
||||
|
||||
# ── Home Assistant ──────────────────────────────────────────────────────────
|
||||
# URL van je Home Assistant instantie
|
||||
HA_URL=http://192.168.1.235:8123
|
||||
|
||||
# Long-lived access token (aanmaken via HA → Profiel → Beveiliging)
|
||||
HA_TOKEN=verander_dit_in_jouw_token
|
||||
|
||||
# ── Whisper speech-to-text ──────────────────────────────────────────────────
|
||||
# "local" = faster-whisper (offline, lokaal) — aanbevolen
|
||||
# "openai" = OpenAI Whisper API (vereist API key en internet)
|
||||
WHISPER_MODE=local
|
||||
|
||||
# Model voor lokale modus: tiny, base, small, medium, large-v3
|
||||
# "base" is een goede balans voor Nederlands (~145 MB)
|
||||
WHISPER_MODEL=base
|
||||
|
||||
# Alleen nodig bij WHISPER_MODE=openai
|
||||
OPENAI_API_KEY=
|
||||
|
||||
# Rekenapparaat: "auto", "cpu", of "cuda" (GPU)
|
||||
WHISPER_DEVICE=auto
|
||||
|
||||
# ── Web server ──────────────────────────────────────────────────────────────
|
||||
WEB_HOST=127.0.0.1
|
||||
WEB_PORT=8765
|
||||
|
||||
# CORS origins (komma-gescheiden). "*" = alles toestaan
|
||||
CORS_ORIGINS=*
|
||||
|
||||
# ── Neo4j graph database ────────────────────────────────────────────────────
|
||||
NEO4J_URI=neo4j://192.168.1.211:49153
|
||||
NEO4J_USER=neo4j
|
||||
NEO4J_PASSWORD=
|
||||
|
||||
# ── PostgreSQL ──────────────────────────────────────────────────────────────
|
||||
PG_HOST=192.168.1.211
|
||||
PG_PORT=5433
|
||||
PG_USER=mo
|
||||
PG_PASSWORD=
|
||||
PG_DATABASE=homelab
|
||||
|
||||
Reference in New Issue
Block a user