mirror of
https://github.com/status-im/status-go.git
synced 2025-01-23 21:19:48 +00:00
a3bff47800
- some minor progress to add nwaku in status-go - nwaku.go: GetNumConnectedPeers controls when passed pubsub is empty - waku_test.go: adapt TestWakuV2Store - add missing shard.go - feat_: build nwaku with nix and use build tags to choose between go-waku and nwaku (#5896) - chore_: update nwaku - nwaku bump (#5911) - bump: nwaku - chore: add USE_NWAKU env flag - fix: build libwaku only if needed - feat: testing discovery and dialing with nwaku integration (#5940) - message publisher and sent verifier (#5966) - storenode requestor for missing message retrieval and result iterator impl (#5971) - uncomment code that would allow status-go/go-waku to compile and libwaku test to run (#5986) - supporting peer exchange with nwaku (#5983) - store queries - ping - ping storenodes using AddrInfo (#6004) - dial, drop and retrieve connected peers (#6013) - integrate on-demand DNS discovery and implement discoverAndConnectPeers (#6017) - extract libwaku calls into WakuNode struct (#6027) - async nwaku - remove nwaku process loop - receive messages via relay (#6185) - extract timeout from context - use correct port field, get free ports and uncomment some functions (#6200) - enable filter/lightpush/px and setup rate limits - add protected topics
131 lines
2.0 KiB
Plaintext
131 lines
2.0 KiB
Plaintext
# 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/
|
|
/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/signals
|
|
tests-functional/*.log
|
|
.venv
|
|
|
|
|
|
# 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
|