-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevbox.json
More file actions
33 lines (33 loc) · 841 Bytes
/
devbox.json
File metadata and controls
33 lines (33 loc) · 841 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
32
33
{
"$schema": "https://raw.githubusercontent.com/jetify-com/devbox/0.13.4/.schema/devbox.schema.json",
"packages": [
"vale@latest",
"maven@latest",
"jdk17@latest",
"docker-compose@latest",
"hugo@latest",
"go@latest",
"kustomize@latest",
"kubectl@latest",
"minikube@latest",
"git@latest"
],
"shell": {
"init_hook": [],
"scripts": {
"test": [
"mvn clean test"
],
"build": [
"mvn -B -s $MAVEN_SETTINGS_RSB -U clean install deploy"
],
"update-license": [
"mvn license:format"
],
"minikube": [
"minikube start --kubernetes-version='v1.31' --addons=metrics-server,ingress --container-runtime=containerd",
"kustomize build docs/deployment/overlays/crane | kubectl apply -f - --server-side"
]
}
}
}