Files
RetroDebian/.vscode/tasks.json
2026-03-29 22:48:26 +02:00

22 lines
624 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "RetroDebian: validate",
"type": "shell",
"command": "python3",
"args": ["builder/py/orchestrate.py", "validate"],
"options": {"cwd": "${workspaceFolder}"},
"problemMatcher": []
},
{
"label": "RetroDebian: run-local (demo, fake legacy)",
"type": "shell",
"command": "python3",
"args": ["builder/py/orchestrate.py", "run", "--profile", "demo", "--fake-legacy"],
"options": {"cwd": "${workspaceFolder}", "env": {"PYTHONPATH": "${workspaceFolder}/builder/py"}},
"problemMatcher": []
}
]
}