-
Notifications
You must be signed in to change notification settings - Fork 0
/
devbox.json
46 lines (46 loc) · 994 Bytes
/
devbox.json
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
44
45
46
{
"packages": [
"bun@latest",
"nodejs@20",
"git@latest",
"vim@latest",
"less@latest",
"openssh@latest",
"hexdump@latest",
"curl@latest",
"jq@latest",
"screen@latest",
"which@latest",
"rename@latest"
],
"shell": {
"init_hook": [
"echo 'Welcome to devbox!' > /dev/null",
"alias ls='ls --color'"
],
"scripts": {
"start": [
"bun start"
],
"build": [
"bun run build"
],
"build_npm": [
"npm ci",
"npm run build"
],
"update": [
"cd utils",
"bun create_songs.ts config.yaml",
"bun create_services.ts config.yaml",
"scp ../src/assets/*.json hosting:data/sites/gasser.blue/jemifier/src/assets",
"ssh hosting 'cd data/sites/gasser.blue/jemifier && git pull && devbox run build_npm'"
]
}
},
"env": {
"BUN_INSTALL": "$PWD/.bun",
"LS_COLORS": "di=33",
"PATH": "$PATH:$PWD/.bun/bin"
}
}