.museignore
toml
sha256:1d3182b1c5c2833c8ab0d437e03eeadfd3ad6679a2877a6baab8d17442d38936
Bootstrap Scooling Lab repository
Human
patch
42 days ago
| 1 | # .museignore - snapshot exclusion rules for this repository. |
| 2 | |
| 3 | [global] |
| 4 | patterns = [ |
| 5 | ".DS_Store", |
| 6 | "Thumbs.db", |
| 7 | ] |
| 8 | |
| 9 | [domain.code] |
| 10 | patterns = [ |
| 11 | "__pycache__/", |
| 12 | "*.pyc", |
| 13 | "*.pyo", |
| 14 | ".pytest_cache/", |
| 15 | ".mypy_cache/", |
| 16 | ".ruff_cache/", |
| 17 | ".venv/", |
| 18 | "venv/", |
| 19 | "dist/", |
| 20 | "build/", |
| 21 | "*.egg-info/", |
| 22 | |
| 23 | ".env", |
| 24 | ".env.*", |
| 25 | "*.key", |
| 26 | "*.pem", |
| 27 | "*.p12", |
| 28 | |
| 29 | "data/", |
| 30 | "artifacts/", |
| 31 | "models/", |
| 32 | "checkpoints/", |
| 33 | "*.safetensors", |
| 34 | "*.gguf", |
| 35 | "*.pt", |
| 36 | "*.pth", |
| 37 | "*.ckpt", |
| 38 | ] |
File History
1 commit
sha256:1d3182b1c5c2833c8ab0d437e03eeadfd3ad6679a2877a6baab8d17442d38936
Bootstrap Scooling Lab repository
Human
patch
42 days ago