-
Notifications
You must be signed in to change notification settings - Fork 247
/
.gitignore
128 lines (106 loc) · 1.99 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
# See http://help.github.com/ignore-files/ for more about ignoring files.
#
# If you find yourself ignoring temporary files generated by your text editor
# or operating system, you probably want to add a global ignore instead:
# git config --global core.excludesfile ~/.gitignore_global
/statusd-data
/cmd/statusd/statusd-data
/cmd/statusd/statusd
/cmd/statusd-cli/statusd-cli
/wnode-status-data
/cmd/wnode-status/wnode-status-data
/cmd/wnode-status/wnode-status
/tmp
*/**/*un~
*/**/*.test
*un~
.DS_Store
*/**/.DS_Store
.ethtest
*/**/*tx_database*
vendor/github.com/ethereum/go-ethereum/vendor
node_modules/
tags
build/
#*
.#*
*#
*~
.project
.settings
# used by the Makefile
/build/_workspace/
/build/bin/
# travis
profile.tmp
profile.cov
# vagrant
.vagrant
# tests
.ethereumtest/
/vendor/**/*_test.go
*.test
#
# golang
coverage.out
coverage-all.out
coverage.html
# vim swap files
[._]*.s[a-v][a-z]
[._]*.sw[a-p]
[._]s[a-v][a-z]
[._]sw[a-p]
Session.vim
.undodir/*
/.idea/
/.vscode/
/cmd/*/.ethereum/
*.iml
# do not vendor nested vendor/ dirs
vendor/**/vendor
# nodejs package
package.json
package-lock.json
# junit reports for Jenkins integration
report.xml
# go test logs
test.log
test_*.log
**/exit_code_*.txt
# Waku libs
vendor/github.com/waku-org/go-zerokit-rln-x86_64/
vendor/github.com/waku-org/go-zerokit-rln-apple/
vendor/github.com/waku-org/go-zerokit-rln-arm/
# status-cli logs
alice.log
bob.log
test-alice/
test-bob/
# Nix
/.nix-gcroots/
# functional tests
__pycache__/
*.py[cod]
*$py.class
.pytest_cache/
.envrc
report/results.xml
tests-functional/coverage
tests-functional/reports
tests-functional/*.log
# generated files
mock
mock.go
*.pb.go
bindata.go
migrations.go
cmd/status-backend/server/endpoints.go
protocol/messenger_handlers.go
internal/version/VERSION
internal/version/GIT_COMMIT
internal/sentry/SENTRY_CONTEXT_NAME
internal/sentry/SENTRY_CONTEXT_VERSION
internal/sentry/SENTRY_PRODUCTION
# Don't ignore generated files in the vendor/ directory
!vendor/**/*.pb.go
!vendor/**/migrations.go