DocSpace-client/.vscode/tasks.json

81 lines
1.9 KiB
JSON
Raw Normal View History

{
"version": "2.0.0",
"problemMatcher": [],
"presentation": {
"focus": true,
"close": true
},
"tasks": [
2023-03-16 13:30:37 +00:00
{
"label": "Backend | build",
"command": "${command:python.interpreterPath} ${workspaceFolder}/../buildtools/build.backend.docker.py",
2023-03-16 13:30:37 +00:00
"type": "shell",
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"reveal": "always",
"panel": "new",
"focus": true
}
},
{
"label": "Backend | stop",
"command": "${command:python.interpreterPath} ${workspaceFolder}/../buildtools/start/stop.backend.docker.py",
"type": "shell",
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"reveal": "always",
"panel": "new",
"focus": true
2023-03-16 13:41:54 +00:00
}
2023-03-16 13:30:37 +00:00
},
{
"label": "Backend | start",
"command": "${command:python.interpreterPath} ${workspaceFolder}/../buildtools/start/start.backend.docker.py",
"type": "shell",
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"reveal": "always",
"panel": "new",
"focus": true
}
},
{
"label": "Backend | restart",
"command": "${command:python.interpreterPath} ${workspaceFolder}/../buildtools/start/restart.backend.docker.py",
"type": "shell",
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"reveal": "always",
"panel": "new",
"focus": true
}
},
{
"label": "Frontend | start",
"type": "shell",
"command": "cd ${workspaceFolder} ; yarn start",
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"reveal": "always",
"panel": "new",
"focus": true
}
}
]
}