# The Institute vault — what never enters git.
# Policy: git tracks KNOWLEDGE + SOURCE; only regenerable/large build artifacts are ignored.
# Papers (.pdf), OpenSim models (.osim), figures (.png/.jpg), and code all sync.

# ── Python ──
__pycache__/
*.py[cod]
*.egg-info/
.venv/
venv/
.pytest_cache/
*.so

# ── Generated scientific data & checkpoints (regenerable / huge) ──
*.vtu
*.vtp
*.obj
*.stl
*.pt
*.pth
*.ckpt
*.onnx
*.npz
*.h5
*.hdf5

# ── Renders / video (generated) ──
*.mp4
*.gif
*.mov
*.webm

# ── LaTeX / build artifacts ──
build/
dist/
*.aux
*.out
*.toc
*.bbl
*.blg
*.synctex.gz
*.fdb_latexmk
*.fls
*.log

# ── OS / editor noise ──
.DS_Store
Thumbs.db
*.swp
.obsidian/workspace.json
.obsidian/workspace-mobile.json

# ── Secrets ──
.env
*.local