-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevbox.json
More file actions
30 lines (30 loc) · 888 Bytes
/
devbox.json
File metadata and controls
30 lines (30 loc) · 888 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
{
"$schema": "https://raw.githubusercontent.com/jetify-com/devbox/0.16.0/.schema/devbox.schema.json",
"packages": {
"elixir": "latest",
"erlang": "latest",
"postgresql": "17",
"postgresql17Packages.pgvector": {
"version": "latest",
"outputs": ["out"]
},
"darwin.apple_sdk.frameworks.CoreServices": {
"platforms": ["arm64-darwin", "x86_64-darwin"]
}
},
"env": {
"PGPORT": "4214",
},
"shell": {
"init_hook": [
"mkdir -p $DEVBOX_WD/.devbox/virtenv/mix",
"mkdir -p $DEVBOX_WD/.devbox/virtenv/hex",
"export MIX_HOME=$DEVBOX_WD/.devbox/virtenv/mix",
"export HEX_HOME=$DEVBOX_WD/.devbox/virtenv/hex",
"mix local.hex --force --if-missing",
],
"scripts": {
"init-postgres": ".devbox_scripts/init-postgres",
}
}
}