mirror of https://github.com/grpc/grpc.io.git
Fix initial broken links
Signed-off-by: lucperkins <lucperkins@gmail.com>
This commit is contained in:
parent
2f0d53de24
commit
38375f22c9
|
|
@ -33,7 +33,7 @@ It does this by:
|
|||
In this post I'll provide background about how bazel works
|
||||
([Part 1](#about-bazel)) and how to get started building gRPC
|
||||
services with rules_protobuf
|
||||
([Part 2](#building-a-grpc-service-with-rulesprotobuf)). If
|
||||
([Part 2](#building)). If
|
||||
you're already a bazel aficionado, you can skip directly to Part 2.
|
||||
|
||||
|
||||
|
|
@ -50,7 +50,7 @@ and clone the rules_protobuf repository:
|
|||
|
||||
Great. Let's get started!
|
||||
|
||||
# 1: About Bazel
|
||||
# 1: About Bazel {#about-bazel}
|
||||
|
||||
[Bazel](https://www.bazel.io/) is Google's open-source version of
|
||||
their internal build tool called "Blaze". Blaze originated from the
|
||||
|
|
@ -516,7 +516,7 @@ So let's *make something* already! We'll use bazel and rules_protobuf
|
|||
to build a gRPC application.
|
||||
|
||||
|
||||
# 2: Building a gRPC service with rules_protobuf
|
||||
# 2: Building a gRPC service with rules_protobuf {#building}
|
||||
|
||||
The application will involve communication between two
|
||||
different gRPC services:
|
||||
|
|
@ -695,8 +695,7 @@ store our protocol buffer sources in `//proto`, our java sources in
|
|||
|
||||
### 2.4.3: The GreeterTimer Server
|
||||
|
||||
The
|
||||
[java server's](java/org/pubref/grpc/greetertimer/GreeterTimerServer.java)
|
||||
The [Java server's](https://github.com/pubref/grpc_greetertimer/blob/master/java/org/pubref/grpc/greetertimer/GreeterTimerServer.java)
|
||||
main job is to accept requests and then connect to the requested
|
||||
Greeter service as a client. The implementation counts down the
|
||||
number of remaining messages and does a blocking `sayHello(request)`
|
||||
|
|
@ -729,7 +728,7 @@ response to the client.
|
|||
|
||||
### 2.4.4: The GreeterTimer Client
|
||||
|
||||
The [Go client](go/main.go)
|
||||
The [Go client](https://github.com/pubref/grpc_greetertimer/blob/master/go/main.go)
|
||||
prepares a `TimerRequest` and gets back a stream interface from the
|
||||
`client.TimeHello` method. We call its `Recv()` method until EOF, at
|
||||
which point the call is complete. A summary of each BatchResponse is
|
||||
|
|
|
|||
|
|
@ -1,7 +1,6 @@
|
|||
---
|
||||
attribution: Originally written by Lisa Carey with help from others at Google.
|
||||
date: "2016-04-04T00:00:00Z"
|
||||
published: true
|
||||
title: gRPC - now with easy installation.
|
||||
url: blog/installation
|
||||
---
|
||||
|
|
@ -34,5 +33,5 @@ C# | Windows | Install [gRPC NuGet package](https://www.nuget.org/packages/Grpc/
|
|||
Java | Linux, Mac, Windows | Use our [Maven and Gradle plugins](https://github.com/grpc/grpc-java/blob/master/README.md) that provide gRPC with [statically linked `boringssl`](https://github.com/grpc/grpc-java/blob/master/SECURITY.md#openssl-statically-linked-netty-tcnative-boringssl-static)
|
||||
C++ | Linux, Mac, Windows | Currently requires [manual build and install](https://github.com/grpc/grpc/blob/{{< param grpc_release_tag >}}/src/cpp/README.md)
|
||||
|
||||
You can find out more about installation in our [Getting Started guide](/docs/#install-grpc) and GitHub repositories. Do send us your feedback on our [mailing list](https://groups.google.com/forum/#!forum/grpc-io) or file issues on our issue tracker if you run into any problems.
|
||||
You can find out more about installation in our [Getting Started guide](/docs/quickstart) and GitHub repositories. Do send us your feedback on our [mailing list](https://groups.google.com/forum/#!forum/grpc-io) or file issues on our issue tracker if you run into any problems.
|
||||
|
||||
|
|
|
|||
|
|
@ -121,7 +121,7 @@ $ sudo make install
|
|||
|
||||
This will compile and install the gRPC PHP extension into the
|
||||
standard PHP extension directory. You should be able to run
|
||||
the [unit tests](#unit-tests), with the PHP extension installed.
|
||||
the unit tests with the PHP extension installed.
|
||||
|
||||
|
||||
#### Update php.ini
|
||||
|
|
|
|||
|
|
@ -489,7 +489,7 @@ Using `dotnet` command line tool
|
|||
|
||||
: Run `dotnet build RouteGuide.sln` from the `examples/csharp/RouteGuide`
|
||||
directory. For additional instructions on building the gRPC example with the
|
||||
`dotnet` command line tool, see [Quick Start](../../quickstart/csharp.html).
|
||||
`dotnet` command line tool, see [Quick Start](../../../quickstart/csharp).
|
||||
|
||||
Run the server:
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue