Some checks are pending
Build / build_app (push) Waiting to run
Build / build (386, linux) (push) Blocked by required conditions
Build / build (amd64, darwin) (push) Blocked by required conditions
Build / build (amd64, linux) (push) Blocked by required conditions
Build / build (arm, 5, linux) (push) Blocked by required conditions
Build / build (arm, 6, linux) (push) Blocked by required conditions
Build / build (arm, 7, linux) (push) Blocked by required conditions
Build / build (arm64, darwin) (push) Blocked by required conditions
Build / build (arm64, linux) (push) Blocked by required conditions
Build / build (loong64, linux) (push) Blocked by required conditions
Build / build (mips, linux) (push) Blocked by required conditions
Build / build (mips64, linux) (push) Blocked by required conditions
Build / build (mips64le, linux) (push) Blocked by required conditions
Build / build (mipsle, linux) (push) Blocked by required conditions
Build / build (riscv64, linux) (push) Blocked by required conditions
Build / docker-build (push) Blocked by required conditions
Build Documents / build (push) Waiting to run
49 lines
965 B
JSON
49 lines
965 B
JSON
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "Start Backend",
|
|
"type": "shell",
|
|
"command": "air",
|
|
"isBackground": true,
|
|
"presentation": {
|
|
"panel": "new"
|
|
},
|
|
"problemMatcher": []
|
|
},
|
|
{
|
|
"label": "Start Frontend",
|
|
"type": "shell",
|
|
"command": "cd app && pnpm dev",
|
|
"isBackground": true,
|
|
"presentation": {
|
|
"panel": "new"
|
|
}
|
|
},
|
|
{
|
|
"label": "Start Documentation",
|
|
"type": "shell",
|
|
"command": "cd docs && pnpm docs:dev",
|
|
"isBackground": true,
|
|
"presentation": {
|
|
"panel": "new"
|
|
},
|
|
"problemMatcher": []
|
|
},
|
|
{
|
|
"label": "Start All Services",
|
|
"dependsOrder": "parallel",
|
|
"dependsOn": [
|
|
"Start Backend",
|
|
"Start Frontend",
|
|
"Start Documentation"
|
|
],
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
},
|
|
"problemMatcher": []
|
|
}
|
|
]
|
|
}
|