docs/.vscode/tasks.json
2024-09-28 18:00:16 +01:00

19 lines
320 B
JSON
Executable File

{
"version": "2.0.0",
"tasks": [
{
"label": "install-dependencies",
"type": "shell",
"command": "./create_venv.sh",
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"reveal": "always",
"panel": "dedicated"
}
}
]
}