forked from aptos-labs/aptos-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
99 lines (79 loc) · 1.84 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
# 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/**
# Docker incremental build temporary files and directories
target-out-docker
**/Dockerfile.tmp
# Doc generation output
*.md.old
# Vim swap files
*.swp
*.swo
# Emacs backup files
*~
.\#*
.*\#
\#*\#
# Aptos CLI files
.aptos
# VSCode settings
.vscode/
# Typescript
*.env
node_modules
# local /data dir sometimes used for testing
/data
# Cached python files
__pycache__