-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy path.dockerignore
60 lines (47 loc) · 932 Bytes
/
.dockerignore
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
# IDEs and editors
.idea/ # IntelliJ-based IDEs (e.g. PyCharm)
.vscode/ # Visual Studio Code
# Python virtual environment
venv/
# Python bytecode and cache directories
*.pyc
**/__pycache__/
# General build directories (e.g., colcon, make, sphinx, VitePress)
**/build/
**/_build/
**/.build/
**/dist/
**/_dist/
**/.dist/
**/install/
**/_install/
**/.install/
**/log/
**/_log/
**/.log/
**/cache/
**/_cache/
**/.cache/
# GISNav docs build specific build folder
docs/vitepress/docs/reference
# coverage.py files
.coverage*
# SITL test log output (but leave one sample flight log)
gisnav/test/sitl/output/
*.ulg
*.ulog
# Jupyter Notebook checkpoints, notebooks
gisnav/test/sitl/ulog_analysis/.ipynb_checkpoints/
gisnav/test/sitl/ulog_analysis/output
.benchmarks/
*.egg-info
# Debian package builds
debian
.pybuild
*.deb
# mypy
.mypy_cache
# node
node_modules
# pytest
*.pytest_cache/*