Files
vscode-ia/.vscode/tasks.json
T
2026-05-14 09:54:24 -03:00

49 lines
1.3 KiB
JSON
Executable File

{
"version": "2.0.0",
"tasks": [
{
"label": "Vitruvio: Baixar e Extrair ZIP",
"type": "shell",
"command": "bash",
"args": [
"${workspaceFolder}/.vscode/automatizadores/sync_vitruvio_zip.sh",
"${workspaceFolder}/Vitruvio",
"https://vitruvio.superverdemar.com.br/rest/api/integration/public/base_vitruvio_ia"
],
"group": "build",
"problemMatcher": []
},
{
"label": "Workspace: Bootstrap Base",
"type": "shell",
"command": "bash",
"args": [
"${workspaceFolder}/.vscode/automatizadores/bootstrap-workspace.sh",
"${input:bootstrapWorkspaceTarget}"
],
"group": "build",
"problemMatcher": []
},
{
"label": "Workspace: Bootstrap Base (Forcar)",
"type": "shell",
"command": "bash",
"args": [
"${workspaceFolder}/.vscode/automatizadores/bootstrap-workspace.sh",
"${input:bootstrapWorkspaceTarget}",
"--force"
],
"group": "build",
"problemMatcher": []
}
],
"inputs": [
{
"id": "bootstrapWorkspaceTarget",
"type": "promptString",
"description": "Diretorio absoluto ou relativo onde o workspace base sera criado",
"default": "../davinti-template"
}
]
}