https://github.com/yo-mah-ya/grpc-sample
gRPC-sample
https://github.com/yo-mah-ya/grpc-sample
go golang grpc grpc-go protobuf protocol-buffers
Last synced: over 1 year ago
JSON representation
gRPC-sample
- Host: GitHub
- URL: https://github.com/yo-mah-ya/grpc-sample
- Owner: Yo-mah-Ya
- Created: 2023-07-18T23:41:32.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-10-02T05:36:00.000Z (over 2 years ago)
- Last Synced: 2025-01-21T14:25:55.268Z (over 1 year ago)
- Topics: go, golang, grpc, grpc-go, protobuf, protocol-buffers
- Language: Go
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# gRPC sample
Required version of go
```
go version go1.21.1 darwin/arm64
```
## Dependencies
How to install following dependencies
- protoc-gen-go@v1.31.0
- protoc-gen-go-grpc@v1.3.0
```sh
make install
```
## Build **server** source and **client** source
```sh
make # or make build
```
## Execute binaries
```
./bin/server
```
```
./bin/client
```