netbird/management
2021-07-20 18:09:26 +02:00
..
proto chore: use latest golang-grpc libs 2021-07-20 18:09:26 +02:00
testdata feature: basic management service implementation (#44) 2021-07-17 14:38:59 +02:00
Dockerfile refactor: set default flags in code not Dockerfile 2021-07-17 17:26:51 +02:00
file_store.go docs: minor FilesStore corrections 2021-07-18 21:00:32 +02:00
management_suite_test.go feature: basic management service implementation (#44) 2021-07-17 14:38:59 +02:00
management_test.go Improve addition of new peers in Management service. (#56) 2021-07-18 20:51:09 +02:00
README.md chore: use latest golang-grpc libs 2021-07-20 18:09:26 +02:00
server.go chore: use latest golang-grpc libs 2021-07-20 18:09:26 +02:00
store.go Improve addition of new peers in Management service. (#56) 2021-07-18 20:51:09 +02:00

Wiretrustee Management Server

Install golang gRpc tools:

#!/bin/bash
go install google.golang.org/protobuf/cmd/protoc-gen-go@v1.26
go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@v1.1

Generate gRPC code:

#!/bin/bash
protoc -I proto/ proto/management.proto --go_out=. --go-grpc_out=.