-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevbox.json
More file actions
31 lines (31 loc) · 898 Bytes
/
Copy pathdevbox.json
File metadata and controls
31 lines (31 loc) · 898 Bytes
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
{
"$schema": "https://raw.githubusercontent.com/jetify-com/devbox/0.13.2-fcf3a42/.schema/devbox.schema.json",
"packages": [
"skaffold@2.15.0",
"go@1.24.3",
"gopls@0.18.1",
"buf@1.52.1",
"protobuf@30.2",
"protoc-gen-go@1.36.6",
"protoc-gen-go-grpc@1.5.1",
"jq@1.7.1"
],
"env": {
"PATH": "$HOME/go/bin:$PATH"
},
"shell": {
"init_hook": [
"echo 'The following scripts are available for convenience:'",
"jq '.shell.scripts | keys' devbox.json",
"go install tool"
],
"scripts": {
"curl": "buf curl --schema . --protocol grpc --http2-prior-knowledge \"$@\"",
"dev": "skaffold dev",
"format": "buf format -w",
"generate": "buf generate",
"health": "buf curl --schema buf.build/grpc/grpc --protocol grpc --http2-prior-knowledge $@/grpc.health.v1.Health/Check",
"lint": "buf lint"
}
}
}