https://github.com/stackb/grpc-fortune-teller
Sample gRPC application
https://github.com/stackb/grpc-fortune-teller
grpc
Last synced: 9 months ago
JSON representation
Sample gRPC application
- Host: GitHub
- URL: https://github.com/stackb/grpc-fortune-teller
- Owner: stackb
- Created: 2018-05-01T02:06:39.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-05-01T02:33:22.000Z (over 7 years ago)
- Last Synced: 2025-02-14T14:51:45.017Z (11 months ago)
- Topics: grpc
- Language: Python
- Size: 7.81 KB
- Stars: 3
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# fortune-teller
This repository contains a sample gRPC application built with bazel. It was
initially built as an example of how to use grpc with
[nginx-ingress](https://github.com/kubernetes/ingress-nginx/docs/grpc).
## Build
```
$ bazel build //app:fortune
Target //app:fortune up-to-date:
bazel-bin/app/linux_amd64_static_pure_stripped/fortune
```
## Run
```sh
$ bazel run //app:image
Loaded image ID: sha256:aa597c897c873116fcbfccafecf5ab0f6f4178a05e4a00c8e79de91ac0d2e9e7
Tagging aa597c897c873116fcbfccafecf5ab0f6f4178a05e4a00c8e79de91ac0d2e9e7 as bazel/app:image
```
```sh
$ docker run bazel/app:image
2018/05/01 02:13:43 Restored /tmp/fortune-teller/usr/share/games/fortunes/fortunes.dat
2018/05/01 02:13:43 Restored /tmp/fortune-teller/usr/share/games/fortunes/literature
2018/05/01 02:13:43 Restored /tmp/fortune-teller/usr/share/games/fortunes/literature.dat
2018/05/01 02:13:43 Restored /tmp/fortune-teller/usr/share/games/fortunes/riddles
2018/05/01 02:13:43 Restored /tmp/fortune-teller/usr/share/games/fortunes/riddles.dat
2018/05/01 02:13:43 Restored /tmp/fortune-teller/usr/share/games/fortunes/fortunes
2018/05/01 02:13:43 Assets restored to /tmp/fortune-teller
2018/05/01 02:13:43 Listening for gRPC requests at 50051
```
## Invoke
```sh
$ grpcurl -plaintext localhost:50051 build.stack.fortune.FortuneTeller/Predict
{
"message": "Whenever the literary German dives into a sentence, that is the last\nyou are going to see of him until he emerges on the other side of his\nAtlantic with his verb in his mouth.\n\t\t-- Mark Twain \"A Connecticut Yankee in King Arthur's Court\""
}
```