6ebee21bf0
Damit kann die Dev-Maschine (wo Claude Code laeuft) die aria-wohnung-VM ueber Diagnostic Port 3001 erreichen, ohne die interne IP im Git zu haben. Pro Maschine wird .claude/aria-vm.env aus dem .example kopiert und mit der lokalen Routing-Info gefuellt. Nutzung: source .claude/aria-vm.env curl -s "$ARIA_BRAIN_URL/memory/stats" Im docker-compose-Netz aria-net leben die Hostnamen (aria-brain etc.) weiterhin direkt — das brauchst nur Hosts AUSSERHALB der VM. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
67 lines
2.3 KiB
Plaintext
67 lines
2.3 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
|
|
|
|
# Privater User-Profile-Snippet (Tool-Stack, interne URLs) —
|
|
# liegt jetzt in brain-import/ (frueher aria-data/config/USER.md).
|
|
# USER.md.example ist Repo-Inhalt, USER.md lokal selbst anlegen.
|
|
aria-data/brain-import/USER.md
|
|
|
|
# ── 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/
|
|
|
|
# ── 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 |