-
Notifications
You must be signed in to change notification settings - Fork 75
/
.gitignore
66 lines (49 loc) · 966 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
# MacOS
*.DS_Store
# Executables
/keep-client
# IDEs
.vscode/
.idea/
# Vim
*.swp
*.swo
# Infrastructure
/infrastructure/gcp/service-accounts*
# Secret directory used in Kubernetes configurations
/infrastructure/kube/**/.secret/
/infrastructure/kube/**/*.secret
# Backup directory for local copies of Kubernetes configurations
/infrastructure/kube/**/.backup/
# Keys
keystore/
keep_accounts
# Python and IPython
*.ipynb_checkpoints
__pycache__
*.pyc
# Configuration files
/configs/
!/configs/config.toml.SAMPLE
# Application Working Directory
.keep/
# Private testnet artifacts
*-keep-client-deployment-bundle.tar.gz
# Node
node_modules/
# Yarn
yarn-error.log
# Solidity
/solidity*/**/artifacts/
/solidity*/**/build/
/solidity*/**/cache/
/solidity*/**/typechain/
/solidity*/**/export.json
# Go bindings generator
/pkg/chain/**/gen/_address/
/pkg/chain/**/gen/_contracts/
/pkg/chain/**/gen/abi/*.abi
# Temporary directory
tmp/
# Output directory
out/