-
Notifications
You must be signed in to change notification settings - Fork 0
/
buf.gen.yaml
66 lines (66 loc) · 2.43 KB
/
buf.gen.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
version: v1
plugins:
# ##############################################################################
# protoc-gen-go
# https://pkg.go.dev/google.golang.org/protobuf/cmd/protoc-gen-go
# #############################################################################
- name: go
out: zgen/go
opt:
- paths=source_relative
# ##############################################################################
# protoc-gen-go-grpc
# https://pkg.go.dev/google.golang.org/grpc/cmd/protoc-gen-go-grpc#section-readme
# #############################################################################
- name: go-grpc
out: zgen/go
opt:
- paths=source_relative
##############################################################################
# protoc-gen-validate (PGV)
# https://github.com/envoyproxy/protoc-gen-validate
# #############################################################################
- name: validate
out: zgen/go
opt:
- lang=go
- paths=source_relative
# ##############################################################################
# gRPC-Gateway grpc-gateway & openapi
# https://github.com/grpc-ecosystem/grpc-gateway
# https://buf.build/grpc-ecosystem/plugins/openapiv2
# https://buf.build/grpc-ecosystem/plugins/grpc-gateway
# #############################################################################
- name: grpc-gateway
out: zgen/go
opt:
- paths=source_relative
- name: openapiv2
out: static/js
opt:
- output_format=json
- allow_merge=true
- merge_file_name=service
- openapi_configuration=proto/config.swagger.yaml
strategy: all
# ##############################################################################
# protoc-gen-doc
# https://github.com/pseudomuto/protoc-gen-doc
# #############################################################################
- name: doc
out: proto/
opt: /app/template.tmpl,README.md
strategy: all
# ##############################################################################
# protoc-gen-grpc-gateway-ts
# https://github.com/grpc-ecosystem/protoc-gen-grpc-gateway-ts
# #############################################################################
- name: grpc-gateway-ts
out: zgen/ts
strategy: all
opt:
- ts_import_roots=.
# - ts_import_root_aliases=/js
- fetch_module_directory=.
- logtostderr=true
- loglevel=debug