protobox simplifies gRPC source generation and dependency management for your projects.
Keep track of proto files needed from folders or external git repos. Don't have protoc and all the plugins needed to generate your source files? No problem! protobox will use a docker image as a build host so you don't have to worry about the protoc build chain.
go get github.com/UNIwise/protobox
# Display the help page
protobox help
# Initialize protobox.yaml
protobox init
# Add a proto dependency, target language 'go' and out directory 'gen'
protobox add https://github.com/UNIwise/protobox/blob/master/examples/service.proto go gen
# Add a proto local dependency, target language 'go' and out directory 'gen'
protobox add examples/service.proto go gen
# Generate your source files specified in protobox.yaml
protobox generate
# Use your local protoc binaries instead of the docker build host
protobox generate --local
# Check if your system have the needed dependencies for protobox to work
protobox check
# Lint the configuration file
protobox lint
All protobox project dependencies and settings are specified in a protobox.yaml
in the root of your project.
A simple configuration with a local proto file:
syntax: v1
services:
- proto: service.proto
out:
- language: go
path: gen/
Proto files from git:
syntax: v1
services:
- repo: [email protected]:UNIwise/protobox
ref: master # optional, a branch or commit hash
proto: examples/service.proto
out:
- language: go
path: gen/
Multiple target languages:
syntax: v1
services:
- proto: service.proto
out:
- language: go
path: gen/go
- language: php
path: gen/php
Multiple services:
syntax: v1
services:
- proto: service1.proto
out:
- language: go
path: gen/service1
- proto: service2.proto
out:
- language: go
path: gen/service2
And of course all examples above can be combined as you please!
Key | Info | Optional |
---|---|---|
syntax | Specifies the version of the syntax used. Available syntaxes are: v1 |
no |
builder | Specifies the docker image to use as build host. Defaults is wiseflow/protobox |
yes |
services | A list of services to generate, see Services | yes |
Key | Info | Optional |
---|---|---|
repo | A git repository to retrieve a protobuf file from | yes |
ref | A branch or commit id to checkout from git | yes |
proto | The path of the protobuf file to use. If no Repo is specified then proto is a local file. | np |
out | A list of languages to generate services for, see Out | no |
Key | Info | Optional |
---|---|---|
language | The target language of the service. Available languages are: go , php , node , web , cpp , python , java , ruby and none . Use none to copy the proto file without generating source files |
no |
path | The output path of the generated files | no |