-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdevbox.json
More file actions
47 lines (47 loc) · 1.14 KB
/
devbox.json
File metadata and controls
47 lines (47 loc) · 1.14 KB
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
47
{
"$schema": "https://raw.githubusercontent.com/jetify-com/devbox/0.14.0/.schema/devbox.schema.json",
"env": {
"DEVBOX_COREPACK_ENABLED": "true",
"TMPDIR": "/private/tmp/tigerdata",
"LD_LIBRARY_PATH": "$PWD/.devbox/nix/profile/default/lib",
"FONTCONFIG_PATH": "$PWD/.devbox/nix/profile/default/etc/fonts"
},
"packages": {
"ruby": "3.3.0",
"postgresql": {
"version": "15.7",
"outputs": ["lib", "out"]
},
"nodejs": {
"version": "22.9.0",
"outputs": ["out", "libv8"]
},
"jdk": {
"version": "19",
"allow_insecure": ["zulu-ca-jdk-19.0.2"]
},
"yarn": "1.22.22",
"openssl": {
"version": "latest",
"outputs": ["bin", "dev", "out"]
},
"libyaml": {
"version": "latest",
"outputs": ["out", "dev"]
},
"pkg-config": "latest",
"path:./nix/chromedriver": "",
"lastpass-cli": "latest",
"prettier": "latest",
"gnupg": "latest",
"msgpack": "latest",
"tzdata": "latest",
"git": "latest"
},
"shell": {
"init_hook": ["mkdir -p $TMPDIR"],
"scripts": {
"setup": ["bundle install", "yarn install"]
}
}
}