22 lines
624 B
JSON
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": []
|
|
}
|
|
]
|
|
}
|