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.
···11+# Sourcegraph indexserver protobuf definitions
22+33+This directory contains protobuf definitions for the indexserver gRPC API.
44+55+To generate the Go code, run this script from the repository root:
66+77+```sh
88+./gen-proto.sh
99+```
1010+1111+Note: this script will regenerate all protos in the project, not just the ones in this directory.
+11
grpc/protos/README.md
···11+# Webserver protobuf definitions
22+33+This directory contains protobuf definitions for the webserver gRPC API.
44+55+To generate the Go code, run this script from the repository root:
66+77+```sh
88+./gen-proto.sh
99+```
1010+1111+Note: this script will regenerate all protos in the project, not just the ones in this directory.