This repository has been archived on 2024-04-25. You can view files and clone it, but cannot push or open issues or pull requests.
python-azure-example/devbox.json

27 lines
496 B
JSON
Raw Permalink Normal View History

2024-03-01 14:11:34 +00:00
{
"packages": [
"just@latest",
"python@3.12",
"python312Packages.pip@latest",
"terraform@latest",
"azure-cli@latest",
2024-03-01 21:05:49 +00:00
"azure-functions-core-tools@latest",
"black@latest",
"postgresql@latest"
2024-03-01 14:11:34 +00:00
],
"env": {
"VENV_DIR": ".venv"
},
"shell": {
"init_hook": [
". $VENV_DIR/bin/activate",
"echo 'Welcome to devbox!' > /dev/null"
],
"scripts": {
"test": [
"echo \"Error: no test specified\" && exit 1"
]
}
}
}