Picsur/.vscode/tasks.json
2022-02-23 21:06:07 +01:00

40 lines
788 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "Start full",
"dependsOn": ["Start backend", "Start frontend", "Start postgres"],
"dependsOrder": "parallel",
"isBackground": true,
"group": "build"
},
{
"type": "shell",
"label": "Start backend",
"command": "yarn start:dev",
"options": {
"cwd": "./backend"
},
"group": "build"
},
{
"type": "shell",
"label": "Start frontend",
"command": "yarn start",
"options": {
"cwd": "./frontend"
},
"group": "build"
},
{
"type": "shell",
"label": "Start postgres",
"command": "podman-compose up",
"options": {
"cwd": "./support"
},
"group": "build"
}
]
}