https://github.com/qbart/go-grpc
https://github.com/qbart/go-grpc
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/qbart/go-grpc
- Owner: qbart
- Created: 2021-07-27T14:22:33.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-07-30T15:34:03.000Z (over 4 years ago)
- Last Synced: 2025-10-07T14:48:43.098Z (3 months ago)
- Language: Go
- Homepage:
- Size: 101 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Ports
# Development
Generate protobuffers:
```
make protoc # generate
```
Start the server:
```
make server
```
Start the client:
```
make client
```
# Dependencies
Install protoc from the official website then install the tools:
```
make install_proto # install if missing
```
# Running the example
Alternatively you can start everything in docker:
```bash
docker-compose build
docker-compose up
```
test the endpoint:
```
make get
```
or mising one:
```
make get_invalid
```