-
Notifications
You must be signed in to change notification settings - Fork 72
/
Copy path.gitignore
67 lines (53 loc) · 853 Bytes
/
.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
65
66
67
# Make sure to update .dockerignore appropriately
**/.DS_Store
**/symbolCache.db
# Terraform
**/*.tfstate
**/*.tfstate.*
**/.terraform.*
**/.terraform/
infra/tf/*/_bolt.tf
# Vagrant
.vagrant-remote
.vagrant-digitalocean-token
**/.vagrant/
# Bolt
.bolt-cache.json
.volumes/
Bolt.local.toml
/namespaces/*
!/namespaces/.gitkeep
!/namespaces/README.md
/secrets/*
!/secrets/.gitkeep
!/secrets/README.md
# Generated code
gen/build_script.sh
gen/test_build_script.sh
gen/svc/
gen/tf/
gen/docker/
gen/tests/
gen/k8s/
# K3s
volumes/
# Rust
lib/**/Cargo.lock
!lib/bolt/Cargo.lock
!lib/job-runner/Cargo.lock
# Allows symlinking target instead of being a directory
**/target
**/target/
**/*.rustfmt
# JavaScript
**/.cache/
**/dist/
**/node_modules/
.turbo
tests/basic-game/.env
# Added by cargo
/target
.env*
.yarn/cache
.yarn/install-state.gz
.turbo