-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
52 lines (40 loc) · 866 Bytes
/
.gitignore
File metadata and controls
52 lines (40 loc) · 866 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
40
41
42
43
44
45
46
47
48
49
50
51
52
# Ignore Python cache files
__pycache__/
*.py[cod]
*$py.class
AGENTS.md
# Ignore distribution/build directories
build/
dist/
AGENTS.md
CLAUDE.md
.mcp.json
# Ignore flagged folder (if not needed in the repo)
flagged/
# Ignore the icons folder (if not needed in the repo)
# Include the Videos folder and its contents
Videos/**
!Videos/cat3_mp4.mp4
# Include the Labeled_data folder and its contents
Labeled_data/**
!Labeled_data/cat3_mp4/**
# Ignore config and environment files
*.env
*.exe
# Ignore log files
*.log
# Ignore text files that aren't documentation
*.txt
!requirements.txt
!README.txt
# Ignore hidden system files
.DS_Store
Thumbs.db
# Ignore virtual environments
.venv/
venv/
.env/
TinyTouch_env/
# Ignore generated sorted frames
Labeled_data/*/sorted_frames/
Labeled_data/*/sorted_frames/**