Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 368 Bytes

README.md

File metadata and controls

19 lines (15 loc) · 368 Bytes

grpc_getting_started

Overview

Getting started with grpc (in C++).

Building with bazel.

Building and Running the Code

To only build the server and client, run the following:

bazel build :greeter_server
bazel build :greeter_client

To build and run the server and client, run the following:

bazel run :greeter_server
bazel run :greeter_client