dataflow/.vscode/tasks.json

34 lines
839 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 15:37:40 +00:00
"isBackground": false,
2022-07-27 08:25:10 +00:00
"presentation": {
"echo": true,
2022-07-27 15:37:40 +00:00
"reveal": "always",
2022-07-27 08:25:10 +00:00
"focus": false,
2022-07-27 15:37:40 +00:00
"panel": "new",
2022-07-27 08:25:10 +00:00
"showReuseMessage": true,
"clear": false,
"close": true
2022-07-27 15:37:40 +00:00
},
2022-07-27 08:25:10 +00:00
},
{
"label": "stopall",
"type": "shell",
"command": "sh stop.sh",
"presentation": {
2022-07-27 15:37:40 +00:00
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared",
2022-07-27 08:25:10 +00:00
"close": true
2022-07-27 15:37:40 +00:00
},
2022-07-27 08:25:10 +00:00
}
]
}