-
-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathdevbox.json
More file actions
33 lines (33 loc) · 783 Bytes
/
devbox.json
File metadata and controls
33 lines (33 loc) · 783 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.16.0/.schema/devbox.schema.json",
"packages": [
"go-task@latest",
"git@latest",
"docker@latest",
"docker-compose@latest",
"python312@latest",
"nodejs_22@latest",
"uv@latest",
"pnpm@latest",
"jq@latest",
"curl@latest",
"gh@latest",
"watchexec@latest",
"lazydocker@latest",
"lazygit@latest"
],
"shell": {
"init_hook": [
"task --silent default 2>/dev/null || echo 'Run: task --list-all'"
],
"scripts": {
"up": "task docker:up",
"down": "task docker:down",
"dev": "task dev:up",
"logs": "task docker:logs",
"test": "task test:e2e",
"build": "task build:mcp",
"status": "task status"
}
}
}