-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathdevbox.json
More file actions
43 lines (43 loc) · 986 Bytes
/
devbox.json
File metadata and controls
43 lines (43 loc) · 986 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
34
35
36
37
38
39
40
41
42
43
{
"$schema": "https://raw.githubusercontent.com/jetify-com/devbox/0.13.7/.schema/devbox.schema.json",
"packages": [
"maven@latest",
"quarkus@latest",
"jdk21@latest",
"firebase-tools@14.27.0",
"google-cloud-sdk@latest",
"nodejs@22",
"bruno-cli@latest",
"process-compose@latest",
"python@3.14",
"python314Packages.pip@latest"
],
"env_from": ".env",
"shell": {
"init_hook": [
"[ -f .devboxrc ] && . ./.devboxrc",
"echo 'Welcome to devbox!'"
],
"scripts": {
"setup": [
"bin/setup"
],
"build-library-api-ci": [
"cd library-api",
"quarkus build --no-tests"
],
"build-builder-api-ci": [
"cd builder-api",
"quarkus build --no-tests"
],
"install-builder-frontend-ci": [
"cd builder-frontend",
"npm ci"
],
"build-builder-frontend-ci": [
"cd builder-frontend",
"npm run build"
]
}
}
}