Skip to content

jasonkolodziej/octo-broccoli

Repository files navigation

octo-broccoli

Run on Google Cloud

All the boilerplate you need to get started with writing grpc-gateway powered REST services in Go.

Running

Running main.go starts a web server on https://0.0.0.0:11000/. You can configure the port used with the $PORT environment variable, and to serve on HTTP set $SERVE_HTTP=true.

$ go run main.go

An OpenAPI UI is served on https://0.0.0.0:11000/.

Running the standalone server

If you want to use a separate gRPC server, for example one written in Java or C++, you can run the standalone web server instead:

$ go run ./cmd/standalone/ --server-address dns:///0.0.0.0:10000

Getting started

After cloning the repo, there are a couple of initial steps;

  1. Install buf with make install, which is necessary for us to generate the Go and OpenAPIv2 files.
  2. If you forked this repo, or cloned it into a different directory from the github structure, you will need to correct the import paths. Here's a nice find one-liner for accomplishing this (replace yourscmprovider.com/youruser/yourrepo with your cloned repo path):
    1. Open Makefile and replace NEW_REPO_PATH with what your new repository path is:
         # TODO: Replace with your new repo name
         NEW_REPO_PATH=yourscmprovider.com/youruser/yourrepo
         # ...
      then perform
      $ make adjust_template
    2. Or perform the following in your shell
      $ find . -path ./vendor -prune -o -type f \( -name '*.go' -o -name '*.proto' \) -exec sed -i -e "s;github.com/jasonkolodziej/octo-broccoli;yourscmprovider.com/youruser/yourrepo;g" {} +
  3. Finally, generate the files with make generate.

Now you can run the web server with go run main.go.

Making it your own

The next step is to define the interface you want to expose in proto/example/asset.proto. See https://developers.google.com/protocol-buffers/ tutorials and guides on writing protofiles.

Once that is done, regenerate the files using make generate. This will mean you'll need to implement any functions in server/server.go, or else the build will fail since your struct won't be implementing the interface defined by the generated file in proto/example/asset.pb.go.

This should hopefully be all you need to get started playing around with the gRPC-Gateway!

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages