forked from aptos-labs/aptos-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
137 lines (109 loc) · 2.86 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
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
# 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/
# 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
aptos-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.
!aptos-move/framework/DPN/releases/artifacts/**
!aptos-move/framework/experimental/releases/artifacts/**
!aptos-move/framework/aptos-framework/releases/artifacts/**
# Do not ignore the Move script for the faucet.
# https://stackoverflow.com/a/16318111/3846032
!aptos-move/move-examples/scripts/minter/build
aptos-move/move-examples/scripts/minter/build/*
!aptos-move/move-examples/scripts/minter/build/Minter
aptos-move/move-examples/scripts/minter/build/Minter/*
!aptos-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
*~
.\#*
.*\#
\#*\#
# Aptos CLI / local testnet files
.aptos
**/*.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
aptos-move/aptos-vm-profiling/**/*.log
aptos-move/aptos-vm-profiling/**/*.txt
# Gas profiler outputs
aptos-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/*
# ignore compiler artifacts
*.dot
*.bytecode
!third_party/move/move-prover/tests/xsources/design/*.bytecode