fork of https://github.com/sourcegraph/zoekt
0

Configure Feed

Select the types of activity you want to include in your feed.

Add README for proto directories (#943)

Somehow I just found out about `gen-proto.sh` recently, after many months of
working on Zoekt! This PR adds brief `README` files in the proto directories to
guide people (and LLMs) to it.

+22
+11
cmd/zoekt-sourcegraph-indexserver/grpc/protos/README.md
··· 1 + # Sourcegraph indexserver protobuf definitions 2 + 3 + This directory contains protobuf definitions for the indexserver gRPC API. 4 + 5 + To generate the Go code, run this script from the repository root: 6 + 7 + ```sh 8 + ./gen-proto.sh 9 + ``` 10 + 11 + Note: this script will regenerate all protos in the project, not just the ones in this directory.
+11
grpc/protos/README.md
··· 1 + # Webserver protobuf definitions 2 + 3 + This directory contains protobuf definitions for the webserver gRPC API. 4 + 5 + To generate the Go code, run this script from the repository root: 6 + 7 + ```sh 8 + ./gen-proto.sh 9 + ``` 10 + 11 + Note: this script will regenerate all protos in the project, not just the ones in this directory.