Statt einer manuell abgelegten Datei zieht llama.cpp das Modell beim ersten Start selbst von Hugging Face (-hf Qwen/Qwen3-8B-GGUF:Q4_K_M, offizielles Repo verifiziert) und cached es unter xtts/models (persistent). Modell/Quant via LLM_HF_REPO/LLM_HF_QUANT in der .env wechselbar, kein Code. Diagnostic-Modellauswahl (on-demand laden/aktivieren mehrerer Modelle) als Folge-Baustein B0.5 via llama-swap ins Plan-Doc aufgenommen. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
86 lines
3.0 KiB
Plaintext
86 lines
3.0 KiB
Plaintext
# ════════════════════════════════════════════════
|
|
# ARIA — .gitignore
|
|
# Faustregel: Code ja, Daten nein.
|
|
# ════════════════════════════════════════════════
|
|
|
|
# ── Secrets & Konfiguration ─────────────────────
|
|
# Alle .env Dateien ausschließen — außer .example Vorlagen
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
!.env.*.example
|
|
|
|
# Lokale Dev-Maschinen-Settings fuer Claude Code (z.B. wie erreicht die
|
|
# Dev-Maschine die aria-wohnung-VM). .example ist Repo-Inhalt, echte
|
|
# Werte pro Maschine selbst pflegen.
|
|
.claude/*.env
|
|
!.claude/*.env.example
|
|
|
|
# brain-import/ ist nur ein Drop-Folder: Stefan packt MDs rein wenn er
|
|
# was migrieren will, klickt im Diagnostic „Migration aus brain-import/",
|
|
# fertig. Die MDs gehoeren NICHT ins Repo (koennen private Daten enthalten,
|
|
# sind eh ephemeral). Verzeichnis selbst bleibt im Git via .gitkeep,
|
|
# README erklaert den Zweck.
|
|
aria-data/brain-import/*
|
|
!aria-data/brain-import/.gitkeep
|
|
!aria-data/brain-import/README.md
|
|
|
|
# .aria-debug/ — App-Crash-Logs die tools/fetch-app-logs.sh hier ablegt.
|
|
# Komplett lokal, enthaelt potentiell private Stacktraces / Daten.
|
|
.aria-debug/
|
|
|
|
# ── ARIAs Gedächtnis (Vector-DB, Skills, Models) ──
|
|
# Backup via Diagnostic → Gehirn-Export (tar.gz), nicht via Git.
|
|
aria-data/brain/data/
|
|
aria-data/brain/qdrant/
|
|
|
|
# Diagnostic-State (aktive Session etc.)
|
|
aria-data/config/diag-state/
|
|
|
|
# ── Shared Volume (Bind-Mount statt Docker-managed) ──
|
|
# Enthaelt User-Uploads, Voice-Cloning-Samples, OAuth-Tokens,
|
|
# chat_backup.jsonl, Memory-Attachments, runtime-state. Hunderte MB,
|
|
# enthaelt PRIVATE Daten. Backup via Diagnostic, nicht via Git.
|
|
aria-shared/
|
|
|
|
# ── Node / npm ──────────────────────────────────
|
|
node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# ── Android Build ───────────────────────────────
|
|
android/build/
|
|
android/.gradle/
|
|
android/app/build/
|
|
android/android/.gradle/
|
|
android/android/app/build/
|
|
android/android/local.properties
|
|
android/local.properties
|
|
android/package-lock.json
|
|
*.apk
|
|
*.aab
|
|
rvs/updates/*.apk
|
|
|
|
# ── Tauri / Desktop Build ───────────────────────
|
|
desktop/src-tauri/target/
|
|
desktop/dist/
|
|
|
|
# ── Python ──────────────────────────────────────
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
|
|
# ── macOS ────────────────────────────────────────
|
|
.DS_Store
|
|
|
|
# ── Editor ──────────────────────────────────────
|
|
.vscode/settings.json
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Lokale LLM-Modelle (Plan B) — GGUF/HF-Cache sind mehrere GB, nicht ins Repo
|
|
xtts/models/*
|
|
!xtts/models/.gitkeep
|