https://github.com/ferperales/grpc_demo
gRPC demo for EuRuKo 2024
https://github.com/ferperales/grpc_demo
Last synced: 3 months ago
JSON representation
gRPC demo for EuRuKo 2024
- Host: GitHub
- URL: https://github.com/ferperales/grpc_demo
- Owner: FerPerales
- Created: 2024-09-12T06:22:12.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-09-12T08:35:08.000Z (9 months ago)
- Last Synced: 2025-01-14T03:47:59.407Z (5 months ago)
- Language: Ruby
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# gRPC Demo
## Prerequisites
* asdf
* grpc
* protobufAlternatively, you can install Ruby and Go versions manually or using another tool. Make sure the versions
match what appears in `.tool-versions`## Setup
Install Ruby and Go:
```sh
asdf install
```Go to the Ruby directory and install dependencies:
```sh
cd ruby
bundle install
```Start the server:
```sh
bin/run_server
```Your gRPC server is waiting for requests at port 50051
Send a message from the client:
```sh
bin/hello "EuRuko 2024"
```