secondbrain/.gitignore
Atlas 84afdc1f56 SecondBrain v0.1 — local-first, privacy-scrubbing RAG memory
Generalized + redeployable: config via env, local Ollama embeddings, single
portable sqlite-vec db, hybrid dense+FTS5 recall, mandatory credential scrub.
2026-07-01 21:25:02 +02:00

34 lines
721 B
Text

# ── data & secrets — NEVER commit ──────────────────────────────
*.db
*.db-wal
*.db-shm
*.sqlite
*.sqlite3
data/
store/
corpus/
logs/
*.log
.env
.env.*
!.env.example
secrets/
*.age
*.pem
*.key
# ── python ─────────────────────────────────────────────────────
__pycache__/
*.py[cod]
.venv/
venv/
env/
*.egg-info/
.pytest_cache/
.mypy_cache/
# ── os / editor ────────────────────────────────────────────────
.DS_Store
Thumbs.db
.idea/
.vscode/