mirror of
https://github.com/MatthewL246/pretendo-docker.git
synced 2026-05-22 21:40:41 -05:00
64 lines
1.7 KiB
JSON
64 lines
1.7 KiB
JSON
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "Start Docker Compose",
|
|
"type": "shell",
|
|
"command": "docker compose up -d --build --pull always",
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
}
|
|
},
|
|
{
|
|
"label": "Start docs server",
|
|
"type": "shell",
|
|
"options": {
|
|
"cwd": "${workspaceFolder}/docs"
|
|
},
|
|
"command": "npm install && npm start",
|
|
"problemMatcher": []
|
|
},
|
|
{
|
|
"label": "Build account",
|
|
"type": "shell",
|
|
"options": {
|
|
"cwd": "${workspaceFolder}/repos/account"
|
|
},
|
|
"command": "npm install && npm run build"
|
|
},
|
|
{
|
|
"label": "Build website",
|
|
"type": "shell",
|
|
"options": {
|
|
"cwd": "${workspaceFolder}/repos/website"
|
|
},
|
|
"command": "npm install && npm run build"
|
|
},
|
|
{
|
|
"label": "Build miiverse-api",
|
|
"type": "shell",
|
|
"options": {
|
|
"cwd": "${workspaceFolder}/repos/miiverse-api"
|
|
},
|
|
"command": "npm install && npm run build"
|
|
},
|
|
{
|
|
"label": "Build juxtaposition-ui",
|
|
"type": "shell",
|
|
"options": {
|
|
"cwd": "${workspaceFolder}/repos/juxtaposition-ui"
|
|
},
|
|
"command": "npm install"
|
|
},
|
|
{
|
|
"label": "Build BOSS",
|
|
"type": "shell",
|
|
"options": {
|
|
"cwd": "${workspaceFolder}/repos/BOSS"
|
|
},
|
|
"command": "npm install && npm run build"
|
|
}
|
|
]
|
|
}
|