dataflow/.vscode/tasks.json

28 lines
677 B
JSON
Raw Normal View History

2022-07-27 08:25:10 +00:00
{
"version": "2.0.0",
"tasks": [
{
"label": "restart",
"type": "shell",
"command": "sh restart.sh",
2022-07-27 10:02:24 +00:00
"isBackground": true,
2022-07-27 08:25:10 +00:00
"presentation": {
"echo": true,
2022-07-27 10:02:24 +00:00
"reveal": "silent",
2022-07-27 08:25:10 +00:00
"focus": false,
"panel": "shared",
"showReuseMessage": true,
"clear": false,
"close": true
}
},
{
"label": "stopall",
"type": "shell",
"command": "sh stop.sh",
"presentation": {
"close": true
}
}
]
}