Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/golemfactory/bootstrap_go
Bootstrap nodes for golem network (go implementation)
https://github.com/golemfactory/bootstrap_go
golang golem network p2p
Last synced: 3 months ago
JSON representation
Bootstrap nodes for golem network (go implementation)
- Host: GitHub
- URL: https://github.com/golemfactory/bootstrap_go
- Owner: golemfactory
- License: gpl-3.0
- Created: 2018-01-12T12:29:20.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2020-01-14T14:37:56.000Z (about 5 years ago)
- Last Synced: 2024-04-14T23:45:09.262Z (9 months ago)
- Topics: golang, golem, network, p2p
- Language: Go
- Homepage: https://golem.network
- Size: 77.1 KB
- Stars: 1
- Watchers: 7
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: COPYING.txt
Awesome Lists containing this project
README
# bootstrap_go
Lightweight bootstrap nodes for Golem network. Basic implementation in Go.[![CircleCI](https://circleci.com/gh/golemfactory/bootstrap_go.svg?style=svg)](https://circleci.com/gh/golemfactory/bootstrap_go)
# installation
## prerequisites
- install `go` tools https://golang.org/doc/install
- create go workspace `mkdir ~/go` https://github.com/golang/go/wiki/SettingGOPATH## get code and deps
This will get the sources into `GOPATH` which is by default `~/go`.
```
go get github.com/golemfactory/bootstrap_go
cd ~/go/src/github.com/golemfactory/bootstrap_go/
# get dependencies and test dependencies
go get -t ./...
```## run
```
go run main/main.go
```## tests
```
go test ./...
```## benchmarks
```
go test -bench=. -benchtime=20s ./...
```