# bunker **Repository Path**: zh-five/bunker ## Basic Information - **Project Name**: bunker - **Description**: 基于fuse,只允许指定程序访问的文件保险库 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-11-15 - **Last Updated**: 2024-11-15 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## grpc ```sh # 编译到本项目(gv_web): protoc --go_out=. --go-grpc_out=. proto/* ``` # 安装 grpc 开发环境 安装 protoc ```sh # Linux, using apt or apt-get, for example: $ apt install -y protobuf-compiler $ protoc --version # Ensure compiler version is 3+ libprotoc 3.12.4 # MacOS, using Homebrew: $ brew install protobuf $ protoc --version # Ensure compiler version is 3+ ``` 参考: https://grpc.io/docs/protoc-installation/ 安装插件 ```sh go install google.golang.org/protobuf/cmd/protoc-gen-go@latest go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@latest ``` 参考: https://grpc.io/docs/languages/go/quickstart/