-
Notifications
You must be signed in to change notification settings - Fork 8
/
.gitignore
103 lines (80 loc) · 2.66 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
# If you prefer the allow list template instead of the deny list, see community template:
# https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore
#
# Binaries for programs and plugins
*.exe
*.exe~
*.dll
*.so
*.dylib
# Test binary, built with `go test -c`
*.test
# Output of the go coverage tool, specifically when used with LiteIDE
*.out
# Dependency directories (remove the comment below to include it)
vendor/
# Go workspace file
go.work
# Don't commit binaries
bin
# Before we provision the localnet, `ignite` creates the accounts, genesis, etc. for us
# As many of the files are dynamic, we only preserve the config files in git history.
localnet/poktrolld/*
localnet/*/config/*.json
!localnet/poktrolld/config/
!localnet/poktrolld/config/app.toml
!localnet/poktrolld/config/client.toml
!localnet/poktrolld/config/config.toml
# Macos
.DS_Store
**/.DS_Store
# Development
.vscode
.env
.idea/
.mise.local.toml
# Frontend utils
ts-client/
# Mock
**/*_mock.go
# Localnet config
localnet_config.yaml
# NB: The helper sed command to update `localnet_config` was updated
# so its universal across Linux & macOS. Though it work, it creates this
# extra file. If you are reading this and can think of a way to improve
# `docusaurus/docs/infrastructure/localnet.md`, please do!
# Ref: https://stackoverflow.com/questions/4247068/sed-command-with-i-option-failing-on-mac-but-works-on-linux
localnet_config.yaml-e
# These are needed to ignore byproducts of `make proto_fix_self_import`
# Since sed functions different on macOS and Linux, we need to implement
# some workarounds by always using "sed -i'' -e" instead of just "sed -i -e".
api/poktroll/**/*.go-E
# Relase artifacts produced by `ignite chain build --release`
release
release_binaries
# Only keep one go module in our codebase
go.work.sum
# Avoid accidentally committing gomock artifacts
**/gomock_reflect_*
# SMT KVStore files
# TODO_TECHDEBT(@red-0ne, #126): Rename `smt` to `smt_stores` and make it configurable so it can be stored anywhere on this
smt
smt_stores
# Do not allow a multi-moduled projected
go.work.sum
# TODO_TECHDEBT: It seems that .dot files come and go so we need to figure out the root cause: https://github.com/pokt-network/poktroll/pull/177/files#r1392521547
# **/*.dot
# Load-test summary report, mentioning in gitignore to avoid accidentally committing it
summary.html
# Quickstart helpers
shannon_appgate_config.yaml
shannon_app_config.yaml
shannon_relayminer_config.yaml
shannon_supplier_config.yaml
gentx-*.json
# Binaries VSCode builds for debugging
cmd/poktrolld/*debug_bin*
# The temporary file created by e2e scripts
job.yaml
# tmp directory for locally produced artifacts
tmp/*