Skip to content

Commit 5edecfb

Browse files
committed
Moving protoc installation link
1 parent d142160 commit 5edecfb

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

docs/tutorial-basics/generate-api-boilerplate.mdx

+7-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,13 @@ import TabItem from '@theme/TabItem';
1010

1111
Wouldn't it be cool if you could also generate all the boilerplate code for your API? You are about to do just that using Go.
1212

13-
Of course, you will need to have [Go installed](https://go.dev/dl/) and in your PATH. Additionally, you need [`protoc-gen-go` installed](https://grpc.io/docs/languages/go/quickstart/).
13+
:::note
14+
15+
You will need to have [Go installed](https://go.dev/dl/) and in your PATH. Additionally, you need [`protoc`](https://grpc.io/docs/protoc-installation/) and [`protoc-gen-go` installed](https://grpc.io/docs/languages/go/quickstart/).
16+
17+
:::
18+
19+
[Protocol Buffer Compiler (protoc) Installation](https://grpc.io/docs/protoc-installation/)
1420

1521
```cli title="Install protoc-gen-go"
1622
go install google.golang.org/protobuf/cmd/protoc-gen-go@latest

docs/tutorial-basics/generate-api-specs.md

-6
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,6 @@ title: Generate API Specs
77

88
We have configured Apex to generate an OpenAPI specification for our **URL Shortener** service. Now its time to perform the generation using the `apex` CLI.
99

10-
:::info
11-
12-
Make sure you have `protoc` installed. The instructions are [here](https://grpc.io/docs/protoc-installation/).
13-
14-
:::
15-
1610
## Running the code generator
1711

1812
Now we will be using the `apex generate` command to generate our desired assets.

0 commit comments

Comments
 (0)