forked from sourcenetwork/defradb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
60 lines (49 loc) · 1.31 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
# Ignore defradb specific files.
build/*
cmd/defradb/defradb
cmd/genclidocs/genclidocs
cmd/genmanpages/genmanpages
coverage.txt
coverage
tests/bench/*.log
tests/bench/*.svg
tests/lenses/rust_wasm32_set_default/Cargo.lock
tests/lenses/rust_wasm32_set_default/target
tests/lenses/rust_wasm32_set_default/pkg
tests/lenses/rust_wasm32_remove/Cargo.lock
tests/lenses/rust_wasm32_remove/target
tests/lenses/rust_wasm32_remove/pkg
tests/lenses/rust_wasm32_copy/Cargo.lock
tests/lenses/rust_wasm32_copy/target
tests/lenses/rust_wasm32_copy/pkg
tests/lenses/rust_wasm32_prepend/Cargo.lock
tests/lenses/rust_wasm32_prepend/target
tests/lenses/rust_wasm32_prepend/pkg
tests/lenses/rust_wasm32_filter/Cargo.lock
tests/lenses/rust_wasm32_filter/target
tests/lenses/rust_wasm32_filter/pkg
# Ignore OS X metadata files.
.history
**.DS_Store
**.DS_Code
# Ignore VS Code files.
**.vscode
**.vcs
# Ignore IntelliJ IDEA.
**.idea
# Ignore vim swap files.
**.swp
# Ignore tfstate (this should be stored remotely in S3).
*.tfstate
**tfstate.*
# Ignore .tfplan files (output of `terraform plan`).
**.tfplan
# Ignore local terraform installs.
**.terraform
**/.terraform/*
# Ignore PEM (ssh and other cert/key) file(s).
**.pem
# If Terraform crashes, don't commit the crash log.
crash.log
# Ignore .zip files, such as Lambda Function code slugs.
**.zip