BDLedger APIs
Go to file
2019-04-23 15:29:11 +08:00
bdchain/api Update packages 2019-04-23 15:22:19 +08:00
google/protobuf Update proto files and scripts 2018-09-07 13:22:25 +08:00
.gitignore Make package naming meet Go requirements and 2018-09-26 13:20:22 +08:00
docs.md Update docs 2019-04-23 15:29:11 +08:00
gen-go.bat Add web platform 2018-10-31 15:31:46 +08:00
gen-go.sh Add web platform 2018-10-31 15:31:46 +08:00
gen-web.bat Add web platform 2018-10-31 15:31:46 +08:00
gen-web.sh Add web platform 2018-10-31 15:31:46 +08:00
README.md Add web platform 2018-10-31 15:31:46 +08:00
test.md Update docs 2019-04-23 15:29:11 +08:00

BDChain gRPC API 指南

编译 Go 版本 gRPC

安装

  • Protocol Buffers 3
    • 下载对应版本,并将可执行程序 protoc 的目录加入到环境变量 PATH
  • Go > 1.6
    # 安装 Go 版本相关插件
    go get -u google.golang.org/grpc
    go get -u github.com/golang/protobuf/protoc-gen-go
    
  • Web
    git clone https://github.com/grpc/grpc-web
    cd grpc-web
    sudo make install-plugin
    

参考资料:

编译

  • 在本项目打开控制台,或者切换工作路径到本项目
  • 执行 ./gen-{{platform}}