initial gitignore
This commit is contained in:
+52
@@ -0,0 +1,52 @@
|
|||||||
|
# ════════════════════════════════════════════════
|
||||||
|
# ARIA — .gitignore
|
||||||
|
# Faustregel: Code ja, Daten nein.
|
||||||
|
# ════════════════════════════════════════════════
|
||||||
|
|
||||||
|
# ── Secrets & Konfiguration ─────────────────────
|
||||||
|
# Alle .env Dateien ausschließen — außer .example Vorlagen
|
||||||
|
.env
|
||||||
|
.env.*
|
||||||
|
!.env.example
|
||||||
|
!.env.*.example
|
||||||
|
aria-data/config/*.env
|
||||||
|
!aria-data/config/*.env.example
|
||||||
|
|
||||||
|
# ── ARIAs Gedächtnis (nur per tar gesichert) ────
|
||||||
|
aria-data/brain/
|
||||||
|
|
||||||
|
# ── Stimmen (große Binärdateien) ─────────────────
|
||||||
|
aria-data/voices/
|
||||||
|
|
||||||
|
# ── Node / npm ──────────────────────────────────
|
||||||
|
node_modules/
|
||||||
|
npm-debug.log*
|
||||||
|
yarn-debug.log*
|
||||||
|
yarn-error.log*
|
||||||
|
|
||||||
|
# ── Android Build ───────────────────────────────
|
||||||
|
android/build/
|
||||||
|
android/.gradle/
|
||||||
|
android/app/build/
|
||||||
|
android/local.properties
|
||||||
|
*.apk
|
||||||
|
*.aab
|
||||||
|
|
||||||
|
# ── Tauri / Desktop Build ───────────────────────
|
||||||
|
desktop/src-tauri/target/
|
||||||
|
desktop/dist/
|
||||||
|
|
||||||
|
# ── Python ──────────────────────────────────────
|
||||||
|
__pycache__/
|
||||||
|
*.pyc
|
||||||
|
*.pyo
|
||||||
|
bridge/__pycache__/
|
||||||
|
|
||||||
|
# ── macOS ────────────────────────────────────────
|
||||||
|
.DS_Store
|
||||||
|
|
||||||
|
# ── Editor ──────────────────────────────────────
|
||||||
|
.vscode/settings.json
|
||||||
|
.idea/
|
||||||
|
*.swp
|
||||||
|
*.swo
|
||||||
Reference in New Issue
Block a user