Research-Stack/.vscode/tasks.json
2026-05-11 22:41:44 -05:00

65 lines
No EOL
1.4 KiB
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "Install Python 3.11.15",
"type": "shell",
"command": "uv",
"args": [
"python",
"install",
"3.11.15"
],
"options": {
"cwd": "${workspaceFolder}"
},
"problemMatcher": [],
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared",
"showReuseMessage": true,
"clear": false
}
},
{
"label": "Setup CAD Environment",
"type": "shell",
"command": "bash",
"args": [
"-c",
"cd 5-Applications/text-to-cad && python3.11 -m venv .venv && ./.venv/bin/pip install -r requirements-cad.txt"
],
"options": {
"cwd": "${workspaceFolder}"
},
"problemMatcher": [],
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared"
}
},
{
"label": "Verify CAD Dependencies",
"type": "shell",
"command": "./.venv/bin/python",
"args": [
"-c",
"import build123d; import OCP; print('CAD dependencies OK')"
],
"options": {
"cwd": "${workspaceFolder}/5-Applications/text-to-cad"
},
"problemMatcher": [],
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared"
}
}
]
}