# Python
__pycache__/
*.py[cod]
*.pyo
*.pyd
.Python
*.egg-info/
dist/
build/
.eggs/

# Virtual environments
.venv/
venv/
env/
.env

# EgoVault runtime data
# data/  — vault.db and Markdown exports.  Portable: copy this to move the vault.
# inbox/ — personal files dropped for scanning.
# models/ — GGUF model weights (~3+ GB).  NOT portable; re-downloadable.
# bin/    — auto-downloaded llama-server binary.  NOT portable; re-downloadable.
# output/ — derived Markdown; regenerated via `egovault export`.
data/
docs/*
!docs/.gitkeep
!docs/installation.md
!docs/how-it-works.md
inbox/
.github/skills/
models/
bin/
/output/

# Personal scratch scripts (tracked in EgoVault-personal)
_personal.py

# Testing
.pytest_cache/
.coverage
htmlcov/
.tox/

# Editors
.vscode/settings.json
.idea/
*.swp
*.swo

# OS
.DS_Store
Thumbs.db
