# Environments & secrets
.env
.env.local
*.pem
secrets/

# Python
__pycache__/
*.py[cod]
.venv/
venv/
.pytest_cache/
.ruff_cache/
.mypy_cache/
.coverage
htmlcov/
dist/
build/
*.egg-info/

# Notebooks
.ipynb_checkpoints/

# Data — commit only small samples, never full datasets
data/raw/
data/interim/
data/processed/
*.parquet
*.duckdb
*.db
*.sqlite3
!data/sample/**

# Models & artifacts
models/
*.pt
*.pth
*.onnx
*.pkl
mlruns/

# OS / editor
.DS_Store
Thumbs.db
.vscode/
.idea/
