fp/devbox.json

37 lines
896 B
JSON
Raw Normal View History

2024-07-25 13:53:52 +00:00
{
"$schema": "https://raw.githubusercontent.com/jetify-com/devbox/0.12.0/.schema/devbox.schema.json",
"packages": [
"nodejs@20",
"tilt@latest",
"ctlptl@latest",
"kubectl@latest",
2024-07-28 00:42:09 +00:00
"cmctl@latest",
"kubernetes-helm@latest",
"k9s@latest",
"ffmpeg@latest",
2024-08-07 19:30:29 +00:00
"yt-dlp@latest",
2024-08-07 19:31:24 +00:00
"python310@latest",
2024-09-06 05:39:08 +00:00
"python310Packages.pip@latest",
"vips@latest"
2024-07-25 13:53:52 +00:00
],
"env": {
"DEVBOX_COREPACK_ENABLED": "true",
2024-07-28 00:42:09 +00:00
"ENV": "development",
2024-08-07 19:30:29 +00:00
"KUBECONFIG": "$HOME/.kube/futureporn.yaml",
2024-08-07 19:31:24 +00:00
"VENV_DIR": ".venv"
2024-07-25 13:53:52 +00:00
},
"shell": {
"init_hook": [
2024-08-07 19:30:29 +00:00
"echo Welcome to Futureporn devbox",
". $VENV_DIR/bin/activate",
"pip install -r requirements.txt"
2024-07-25 13:53:52 +00:00
],
"scripts": {
"test": [
"echo \"Error: no test specified\" && exit 1"
2024-07-30 20:34:25 +00:00
],
"tilt": "tilt up -f ./Tiltfile"
2024-07-25 13:53:52 +00:00
}
}
}