-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdevbox.json
32 lines (32 loc) · 960 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
{
"$schema": "https://raw.githubusercontent.com/jetify-com/devbox/0.13.3/.schema/devbox.schema.json",
"packages": {
"python311Full": "latest",
"python311Packages.pip": "latest",
"python311Packages.ipykernel": "latest",
"libGL": {
"version": "latest",
"outputs": [
"out",
"dev"
]
},
"xorg.libX11": "latest",
"expat": "latest"
},
"shell": {
"init_hook": [
"export LD_LIBRARY_PATH=$DEVBOX_PACKAGES_DIR/lib:$LD_LIBRARY_PATH",
"[[ -e .venv ]] && . .venv/bin/activate"
],
"scripts": {
"setup": [
"[[ -e .venv ]] && . .venv/bin/activate",
"python -m pip install git+https://github.com/gumyr/build123d.git",
"env -u CONDA_PREFIX_1 python -m pip install git+https://github.com/cadquery/cadquery.git",
"python -m pip install --upgrade 'ocp_tessellate>=3.0.7,<3.1.0'",
"python -m pip install ocp_vscode==2.6.1"
]
}
}
}