26 lines
817 B
Bash
26 lines
817 B
Bash
# NEXA - Minimalist .env Template
|
|
# Nur absolut essenzielle Secrets. Alles andere wird via #nexa:config kommandos konfiguriert & autodiscovered.
|
|
|
|
# MEMOS (Primary Interface)
|
|
MEMOS_HOST=http://memos.local:5230
|
|
MEMOS_API_KEY=your-access-token
|
|
|
|
# SAIA / LiteLLM (Intelligence)
|
|
SAIA_HOST=https://saia.example.com
|
|
SAIA_API_KEY=your-litellm-api-key
|
|
|
|
# NEXTCLOUD (Tasks, Mail, Calendar - alles wird autodiscovered)
|
|
NC_HOST=https://nextcloud.example.com
|
|
NC_USERNAME=nexa_automation
|
|
NC_APP_PASSWORD=your-app-password
|
|
|
|
# QDRANT (Vector Memory - Semantic Search / Dense Retrieval)
|
|
QDRANT_HOST=http://qdrant.local:6333
|
|
QDRANT_API_KEY=your-api-key
|
|
|
|
# GRAPHDB (Ontotext - Semantic Graph / SPARQL)
|
|
GRAPHDB_HOST=http://graphdb.local:7200
|
|
GRAPHDB_REPOSITORY=nexa_knowledge
|
|
GRAPHDB_USERNAME=nexa
|
|
GRAPHDB_PASSWORD=your-graphdb-password
|