-
-
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) · 835 Bytes
/
devbox.json
File metadata and controls
29 lines (29 loc) · 835 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": {
"python": "3.11.9",
"python311Packages.pip": "latest",
"asdf-vm": "latest",
"git": "latest",
"gnumake": "latest",
"go-task": "latest",
"nodejs": "21.4.0",
"openssl": "latest",
"upx": "latest",
"uv": "latest"
},
"env": {
"VENV_DIR": ".venv"
},
"shell": {
"init_hook": [
". $VENV_DIR/bin/activate",
"uv pip install -r requirements.txt"
],
"scripts": {
"install": "uv pip install -r requirements.txt",
"export-reqs": "uv pip freeze | uv pip compile - -o requirements.txt",
"venv": "uv venv ${VENV_DIR} --allow-existing",
"test": "poetry run pytest"
}
}
}