-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
155 lines (122 loc) · 3.25 KB
/
.gitignore
File metadata and controls
155 lines (122 loc) · 3.25 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
# Rust specific ignores
# Please follow https://help.github.com/en/articles/ignoring-files to create a global
# .gitignore file locally for IDE/Emacs/Vim generated files.
**/target
**/*.rs.bk
.idea/
.history
# Ignore wallet mnemonic files used for deterministic key derivation
*.mnemonic
# GDB related
**/.gdb_history
# macOS Specific ignores
# General
.DS_Store
.AppleDouble
.LSOverride
# Thumbnails
._*
# Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent
# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk
# Generated VM config in vm-genesis
lumio-move/vm-genesis/genesis/vm_config.toml
# Terraform
.terraform/
terraform/terraform.tfstate*
terraform/.terraform.tfstate*
terraform/fullnode/*-kubernetes.json
terraform/validator/*/*-kubernetes.json
terraform/validator/*/*-vault.ca
terraform/validator/*/*-kube.config
terraform/validator/vault-init/backend.tf
terraform/testnet/*-kubernetes.json
terraform/testnet/*-vault.ca
.terraform.lock.hcl
# Move Build Output
build/
# Move coverage and tracing information
.trace
*.mvcov
# Do not ignore the Move build output under the releases for DPN, core, and
# experimental -- these are the release code.
!lumio-move/framework/DPN/releases/artifacts/**
!lumio-move/framework/experimental/releases/artifacts/**
!lumio-move/framework/lumio-framework/releases/artifacts/**
# Do not ignore the Move script for the faucet.
# https://stackoverflow.com/a/16318111/3846032
!lumio-move/move-examples/scripts/minter/build
lumio-move/move-examples/scripts/minter/build/*
!lumio-move/move-examples/scripts/minter/build/Minter
lumio-move/move-examples/scripts/minter/build/Minter/*
!lumio-move/move-examples/scripts/minter/build/Minter/bytecode_scripts
# Docker incremental build temporary files and directories
target-out-docker
**/Dockerfile.tmp
# Indexer grpc temporary certificates.
docker/compose/indexer-grpc/data-service-grpc-server.crt
docker/compose/indexer-grpc/data-service-grpc-server.key
# Doc generation output
*.md.old
# Vim swap files
*.swp
*.swo
# Emacs backup files
*~
.\#*
.*\#
\#*\#
# Lumio CLI / local testnet files
.lumio
**/*.rdb
# VSCode settings
.vscode/
# Typescript
*.env
node_modules
# local /data dir sometimes used for testing
/data
# Cached python files
__pycache__
# ignore framework release bundle file
**/*.mrb
# Profiler outputs
lumio-move/lumio-vm-profiling/**/*.log
lumio-move/lumio-vm-profiling/**/*.txt
# Gas profiler outputs
lumio-move/e2e-move-tests/gas-profiling
gas-profiling
# replay-verify and module-verify script outputs
metadata-cache
/local/
run_*
# test files for indexer GRPC
test_indexer_grpc_*.yaml
test_indexer_grpc/*
ecosystem/indexer-grpc/indexer-transaction-generator/*.yaml
# ignore compiler artifacts
*.dot
*.bytecode
!third_party/move/move-prover/tests/xsources/design/*.bytecode
# ignore antithesis
genesis_antithesis_*/
# ignore cursor rules
.cursor/rules
#ignore proptest regressions
**/proptest_regressions/*
# Ignore generated credentials from google-github-actions/auth
gha-creds-*.json
# Ignore cache for move-package-resolver tests
third_party/move/tools/move-package-resolver/cache
.local_node