Skip to content
/ proto-api Public template

An example of generating gRPC, GraphQL, and OpenAPI via proto ecosystem.

License

Notifications You must be signed in to change notification settings

michilu/proto-api

Repository files navigation

proto-api

An example of generating gRPC, GraphQL, and OpenAPI via proto ecosystem.

swagger

https://editor.swagger.io/?url=https://raw.githubusercontent.com/michilu/proto-api/master/apidocs.swagger.json

refs

Dependencies

proto

gRPC

GraphQL

OpenAPI

sync subtree

for proto

Add upstream:

$ git remote add googleapis https://github.com/googleapis/googleapis
$ git fetch --depth=1 --no-tags googleapis
$ git checkout googleapis/master
$ git subtree split --prefix=google -b google

Add subtree:

$ git checkout dev
$ git subtree add --prefix=vendor/github.com/googleapis/googleapis/google google

Sync to upstream:

$ git fetch --no-tags googleapis
(TBD)
$ git subtree pull --prefix=vendor/github.com/googleapis/googleapis/google origin google