-
-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathdevbox.jsonc
More file actions
34 lines (34 loc) · 1.02 KB
/
Copy pathdevbox.jsonc
File metadata and controls
34 lines (34 loc) · 1.02 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
{
"name": "syncall-dev",
"$schema": "bootstrap/devbox/schema/devbox-schema.json",
"packages": [
// dev utilities -----------------------------------------------------------
// manage python dependencies, see `.venv/`
"python@3.12",
"uv@latest",
// misc --------------------------------------------------------------------
// fix issue with locale: https://github.com/jetify-com/devbox/issues/2427
"glibcLocalesUtf8@latest",
"just@latest",
"python312Packages.ipython@latest",
"taskwarrior@latest",
],
"env": {
"UV_PYTHON": "$PWD/.venv/bin/python",
// make changes to $PATH in bootstrap/devbox/login instead (so that you can
// use env var substitutions as well)
// "$PATH": "$PWD/.venv/bin:$PWD/.krew-config/bin:$PATH"
},
"shell": {
"init_hook": [
"source bootstrap/devbox/login",
"bootstrap/devbox/setup-python-venv.sh",
],
"scripts": {
"test": [
"echo \"Error: no test specified\" && exit 1",
],
},
},
}
// vim: ft=jsonc