-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy path.gitignore
More file actions
46 lines (39 loc) · 789 Bytes
/
.gitignore
File metadata and controls
46 lines (39 loc) · 789 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
# python build stuff
src/**/**.egg-info
src/**/uv.lock
**/__pycache__
# rust build stuff
target/
.cargo/
# top-level build (i think by colcon?)
**/build/
**/install/
**/log/
**/COLCON_IGNORE
**/AMENT_IGNORE
**/.cargo/config.toml
# misc files
.ropeproject
.DS_Store
**/.pdb
**/.vscode
**/.zed
**/videos
# act, the local github actions runner, will sometimes install to a `bin/`
# folder when used locally.
#
# we'll ignore that here
bin/**
# image saved by the simulator camera script
camera_image.png
# from `lib/rovereye` :)
lib/rovereye/**/runs
lib/rovereye/**/*.onnx
lib/rovereye/**/*.pt
lib/rovereye/training
lib/rovereye/images/**
lib/rovereye/training/data/**
!lib/rovereye/training/data/gitkeep
# pixi virtual env (but keep its config, if present)
.pixi/*
!.pixi/config.toml