27c9b1af96
Stefan-Wunsch: Daten aus dem Docker-managed Volume in ein lokales
Verzeichnis verschieben damit sie direkt inspizierbar / per
File-Manager zugaenglich sind statt unter
/var/lib/docker/volumes/aria-agent_aria-shared/_data/ versteckt.
Aenderungen:
- docker-compose.yml: 4 Mounts (proxy/brain/bridge/diagnostic) und die
named-Volume-Definition aria-shared umgestellt auf bind-mount
./aria-shared:/shared
- .gitignore: aria-shared/ ausgeschlossen (enthaelt private User-Daten,
Voice-Samples, OAuth-Tokens, chat_backup.jsonl — gehoert nicht ins Git)
Migration auf der VM (manuell, einmalig):
cd /root/ARIA-AGENT
docker compose down
cp -a /var/lib/docker/volumes/aria-agent_aria-shared/_data/. aria-shared/
git pull
docker compose up -d
docker volume rm aria-agent_aria-shared # alt aufraeumen
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
81 lines
2.9 KiB
Plaintext
81 lines
2.9 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 |