generated from pythoninthegrasses/mvp
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevbox.json
More file actions
33 lines (33 loc) · 726 Bytes
/
devbox.json
File metadata and controls
33 lines (33 loc) · 726 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
31
32
33
{
"packages": [
"python@3.11.9",
"python311Packages.pip@latest",
"asdf-vm@latest",
"gh@latest",
"git@latest",
"gnumake@latest",
"go-task@latest",
"kubectl@latest",
"nodejs@latest",
"openssl@latest",
"poetry@latest",
"tilt@latest",
"uv@latest"
],
"env": {
"VENV_DIR": ".venv",
"UV_HTTP_TIMEOUT": "150"
},
"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": "pytest"
}
}
}