-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathdevbox.json
More file actions
36 lines (36 loc) · 1.04 KB
/
devbox.json
File metadata and controls
36 lines (36 loc) · 1.04 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
35
36
{
"$schema": "https://raw.githubusercontent.com/jetify-com/devbox/0.13.10/.schema/devbox.schema.json",
"packages": [
"python312",
"kubernetes-helm",
"kubectl",
"kubeconform",
"xvfb-run",
"helm-docs"
],
"shell": {
"init_hook": [
". $VENV_DIR/bin/activate",
"echo 'Devbox environment ready!'",
"echo 'Python version:' && python3 --version",
"echo 'Virtual environment activated'",
"echo ''",
"echo 'To install test dependencies, run:'",
"echo ' devbox run test-install'",
"echo ''",
"echo 'Available commands:'",
"echo ' make docs - Generate chart documentation'",
"echo ' make verify - Validate and lint charts'",
"echo ' make version - Show version information'",
"echo ' devbox run test - Run smoke tests'"
],
"scripts": {
"test": "timeout 600 xvfb-run -a python3 ./tests/run/smoke.py",
"test-install": "pip install -r tests/requirements.txt"
}
},
"env": {
"PYTHONUNBUFFERED": "1",
"MPLBACKEND": "Agg"
}
}