mirror of
https://github.com/immich-app/immich.git
synced 2026-01-19 10:26:04 -05:00
48 lines
1.1 KiB
JSON
48 lines
1.1 KiB
JSON
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "Immich API Server (Nest)",
|
|
"type": "shell",
|
|
"command": "/immich-devcontainer/startNestApiServer.sh",
|
|
"presentation": {
|
|
"echo": true,
|
|
"reveal": "always",
|
|
"focus": false,
|
|
"panel": "dedicated",
|
|
"showReuseMessage": true,
|
|
"clear": true
|
|
},
|
|
"runOptions": {
|
|
"runOn": "default"
|
|
},
|
|
"problemMatcher": []
|
|
},
|
|
{
|
|
"label": "Immich Web Server (Vite)",
|
|
"type": "shell",
|
|
"command": "/immich-devcontainer/startViteWebServer.sh",
|
|
"presentation": {
|
|
"echo": true,
|
|
"reveal": "always",
|
|
"focus": false,
|
|
"panel": "dedicated",
|
|
"showReuseMessage": true,
|
|
"clear": true
|
|
},
|
|
"runOptions": {
|
|
"runOn": "default"
|
|
},
|
|
"problemMatcher": []
|
|
},
|
|
{
|
|
"label": "Immich Server and Web",
|
|
"dependsOn": ["Immich Web Server (Vite)", "Immich API Server (Nest)"],
|
|
"runOptions": {
|
|
"runOn": "folderOpen"
|
|
},
|
|
"problemMatcher": []
|
|
}
|
|
]
|
|
}
|