Files
ARIA-AGENT/.gitignore
T
duffyduckandClaude Opus 4.8 edd0b4823f chore: .claude/settings.json aus Tracking nehmen (lokale Permission-Allowlist)
Enthaelt echte Server-IPs fuer den Dev-Zugriff -> gehoert nicht ins oeffentliche
Repo. In .gitignore aufgenommen; lokale Datei bleibt (mit echter IP) erhalten.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-09-24 17:38:17 +02:00

88 lines
3.2 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
# Lokale Claude-Permission-Allowlist mit echten Server-IPs — nicht ins (oeffentliche) Repo.
.claude/settings.json
# 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