-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
39 lines (33 loc) · 651 Bytes
/
Copy path.gitignore
File metadata and controls
39 lines (33 loc) · 651 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# --- Python junk ---
__pycache__/
**/__pycache__/
*.py[cod]
*.pyo
*.pyd
*.so
*.egg-info/
.pytest_cache/
.mypy_cache/
.ruff_cache/
# Virtual envs
.venv/
venv/
ENV/
# Editor/OS
.DS_Store
Thumbs.db
.vscode/
# Local utilities
backup.py
generate_checksums.py
# --- Onika: keep folder structure, ignore contents ---
# Examples are reference material and can be excluded from the main repo.
examples/**
# Ignore ALL model files (checkpoints, safetensors, etc.), but keep folder docs.
models/**
!models/**/
!models/**/README.md
# Ignore ALL runtime/training artifacts under project/, but keep folder docs.
project/**
!project/**/
!project/**/README.md