Generalized + redeployable: config via env, local Ollama embeddings, single portable sqlite-vec db, hybrid dense+FTS5 recall, mandatory credential scrub.
34 lines
721 B
Text
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/
|