Added restart task and task button

This commit is contained in:
Alexey Safronov 2023-11-04 01:52:06 +04:00
parent 75af26db98
commit 3dd39b80b1
2 changed files with 20 additions and 0 deletions

15
.vscode/tasks.json vendored
View File

@ -77,6 +77,21 @@
"close": false
}
},
{
"label": "Backend | restart",
"command": "cd ${workspaceFolder}/../ ; ${command:python.interpreterPath} buildtools/start/restart.backend.docker.py",
"type": "shell",
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"reveal": "always",
"panel": "new",
"focus": true,
"close": false
}
},
{
"label": "Backend | start",
"command": "cd ${workspaceFolder}/../ ; ${command:python.interpreterPath} buildtools/start/start.backend.docker.py",

View File

@ -73,6 +73,11 @@
"task": "Backend | start",
"tooltip": "🛠️ Start the \"backend docker start\" task"
},
{
"label": "S:Restart",
"task": "Backend | restart",
"tooltip": "🛠️ Start the \"backend docker restart\" task"
},
{
"label": "C:Start",
"task": "Frontend | start",