-
Notifications
You must be signed in to change notification settings - Fork 563
Expand file tree
/
Copy path.gitignore
More file actions
79 lines (59 loc) · 997 Bytes
/
.gitignore
File metadata and controls
79 lines (59 loc) · 997 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# generic ignore pattern
**/*.ignore
**/*.ignore.*
.vscode/
# Ignore Python cache files
__pycache__/
*.pyc
# Ignore virtual environment directories
*venv*/
.venv*/
.ssh/
.direnv/
# Ignore python tooling dirs
*.egg-info/
__pycache__
.env
**/.DS_Store
# Ignore default runtime output folder
/assets/output/
/assets/rgbd_data/
/assets/saved_maps/
/assets/model-cache/
/assets/agent/memory.txt
.bash_history
# Ignore all test data directories but allow compressed files
/data/*
!/data/.lfs/
# node env (used by devcontainers cli)
node_modules
package.json
package-lock.json
# Ignore build artifacts
dist/
build/
# Ignore data directory but keep .lfs subdirectory
data/*
!data/.lfs/
FastSAM-x.pt
yolo11n.pt
/thread_monitor_report.csv
# symlink one of .envrc.* if you'd like to use
.envrc
.claude
**/CLAUDE.md
.direnv/
/logs
*.so
/.mypy_cache*
*mobileclip*
/results
**/cpp/result
CLAUDE.MD
/assets/teleop_certs/
/.mcp.json
*.speedscope.json
# Coverage
htmlcov/
.coverage
.coverage.*