dataflow/.vscode/tasks.json

41 lines
946 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
},
{
2022-07-31 16:27:00 +00:00
"label": "clear old data",
2022-07-27 08:25:10 +00:00
"type": "shell",
2022-07-31 16:27:00 +00:00
"command": "sh clear_old_data.sh",
2022-07-27 08:25:10 +00:00
"presentation": {
2022-07-27 15:37:40 +00:00
"echo": true,
"reveal": "always",
"focus": false,
2022-07-31 16:27:00 +00:00
"panel": "new",
"showReuseMessage": true,
"clear": false,
"close": true
2022-07-31 16:27:00 +00:00
2022-07-27 15:37:40 +00:00
},
}
2022-07-31 16:27:00 +00:00
],
2022-07-27 08:25:10 +00:00
}