-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevbox.json
More file actions
29 lines (29 loc) · 742 Bytes
/
devbox.json
File metadata and controls
29 lines (29 loc) · 742 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
{
"packages": [
"git@latest",
"nodejs@latest",
"vscode@latest",
"vim@latest",
"bun@latest",
"rustup@latest",
"libiconv@latest",
"openssh@latest",
"less@latest"
],
"shell": {
"init_hook": [
"if [ -z \"$( find $RUSTUP_HOME | grep toolchains/stable )\" ]; then rustup default 1.76; fi",
"alias ls='ls --color'"
],
"scripts": {
"frontend": "cd frontend; bun start",
"backend": "cd backend; ENABLE_RESET=true ROCKET_LOG_LEVEL='critical' cargo run",
"backend_debug": "cd backend; ENABLE_RESET=true ROCKET_LOG_LEVEL='normal' cargo run"
}
},
"env": {
"BUN_INSTALL": "$PWD/.bun",
"LS_COLORS": "di=33",
"PATH": "$PATH:$PWD/.bun/bin"
}
}