-
Notifications
You must be signed in to change notification settings - Fork 2
/
.gitignore
64 lines (53 loc) · 1.42 KB
/
.gitignore
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
# VS Code
**.vscode/
# golang output binary directory
api/bin
# golang vendor (dependencies) directory
vendor
# Binaries for programs and plugins
*.exe
*.exe~
*.dll
*.so
*.o
*.dylib
*.zip
# Exception to above for raw data sample files
!*bil.zip
# Test binary, build with `go test -c`
*.test
*.dss
# Output of the go coverage tool, specifically when used with LiteIDE
*.out
**.DS_Store
**.pyc
**/__debug*
tmp/*
!tmp/README.md
# _volumes directory, used for local containerized development and debugging
# Keep _volumes/*/*/README.md in order to keep folder structure
# Ignore all other files in directories and all sub-directories
# Attribution to multiple stackOverflow articles to figure this one out!
_volumes/**
# keep _volumes/async_geoprocess/tmp directory structure
!_volumes/async_geoprocess
_volumes/async_geoprocess/**
!_volumes/async_geoprocess/tmp
_volumes/async_geoprocess/tmp/**
!_volumes/async_geoprocess/tmp/README.md
# keep _volumes/async_packager/output directory structure
!_volumes/async_packager
_volumes/async_packager/**
!_volumes/async_packager/output
_volumes/async_packager/output/**
!_volumes/async_packager/output/README.md
# keep _volumes/minio/cumulus directory structure
!_volumes/minio
_volumes/minio/**
!_volumes/minio/cumulus
_volumes/minio/cumulus/**
!_volumes/minio/cumulus/README.md
# tcpdump directory for network packet capture and analysis
!_volumes/tcpdump
_volumes/tcpdump/**
!_volumes/tcpdump/README.md