-
Notifications
You must be signed in to change notification settings - Fork 1
/
buf.gen.yaml
60 lines (51 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
# Copyright 2024 Shiqinfeng <[email protected]>. All rights reserved.
# Use of this source code is governed by a MIT style
# license that can be found in the LICENSE file.
# 配置protoc生成规则
version: v2
managed:
enabled: true
disable:
- file_option: go_package
module: buf.build/googleapis/googleapis
# override:
# - file_option: go_package_prefix
# value: github.com/gomono-layout/api/gen
plugins:
# 使用go插件生成go代码
- local: protoc-gen-go
out: api/gen
opt: paths=source_relative # 使用相对路径
# 使用go-grpc插件生成gRPC服务代码
- local: protoc-gen-go-grpc
out: api/gen
opt: paths=source_relative # 使用相对路径
# generate rest service code
- local: protoc-gen-go-http
out: api/gen
opt: paths=source_relative # 使用相对路径
- remote: buf.build/grpc-ecosystem/gateway
out: api/gen
opt: paths=source_relative
# - local: protoc-gen-openapi
# out: api/gen
# opt: paths=source_relative
- remote: buf.build/community/google-gnostic-openapi:v0.7.0
out: api/gen
opt:
- naming=json # 命名约定。使用"proto"则直接从proto文件传递名称。默认为:json
- depth=2 # 循环消息的递归深度,默认为:2
- default_response=false # 添加默认响应消息。如果为“true”,则自动为使用google.rpc.Status消息的操作添加默认响应。如果您使用envoy或grpc-gateway进行转码,则非常有用,因为它们使用此类型作为默认错误响应。默认为:true。
- enum_type=string # 枚举类型的序列化的类型。使用"string"则进行基于字符串的序列化。默认为:integer。
- output_mode=merged # 输出文件生成模式。默认情况下,只有一个openapi.yaml文件会生成在输出文件夹。使用“source_relative”则会为每一个'[inputfile].proto'文件单独生成一个“[inputfile].openapi.yaml”文件。默认为:merged。
- fq_schema_naming=false # Schema的命名是否加上包名,为true,则会加上包名,例如:system.service.v1.ListDictDetailResponse,否则为:ListDictDetailResponse。默认为:false。
# generate kratos errors code
- local: protoc-gen-go-errors
out: api/gen
opt: paths=source_relative # 使用相对路径
# generate message validator code
- local: protoc-gen-validate
out: api/gen
opt:
- paths=source_relative # 使用相对路径
- lang=go