mirror of
https://github.com/immich-app/immich
synced 2025-10-17 18:19:27 +00:00
* add debug and change ts-node with tsx * update pr changes * update pnpm-lock * remove ts-node from readme * typo * resolve conflicts * remove tsx * launch from dist * add preLaunchTask * update readme * undo main in package.json * remove typo * Apply suggestion from @bwees Co-authored-by: Brandon Wees <brandonwees@gmail.com> * revert pnpm-lock changes * @jrasm91 suggestions * chore: run node with source maps --------- Co-authored-by: Jason Rasmussen <jason@rasm.me> Co-authored-by: Brandon Wees <brandonwees@gmail.com>
80 lines
2.2 KiB
JSON
80 lines
2.2 KiB
JSON
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "Fix Permissions, Install Dependencies",
|
|
"type": "shell",
|
|
"command": "[ -f /immich-devcontainer/container-start.sh ] && /immich-devcontainer/container-start.sh || exit 0",
|
|
"isBackground": true,
|
|
"presentation": {
|
|
"echo": true,
|
|
"reveal": "always",
|
|
"focus": false,
|
|
"panel": "dedicated",
|
|
"showReuseMessage": true,
|
|
"clear": false,
|
|
"group": "Devcontainer tasks",
|
|
"close": true
|
|
},
|
|
"runOptions": {
|
|
"runOn": "default"
|
|
},
|
|
"problemMatcher": []
|
|
},
|
|
{
|
|
"label": "Immich API Server (Nest)",
|
|
"dependsOn": ["Fix Permissions, Install Dependencies"],
|
|
"type": "shell",
|
|
"command": "[ -f /immich-devcontainer/container-start-backend.sh ] && /immich-devcontainer/container-start-backend.sh || exit 0",
|
|
"isBackground": true,
|
|
"presentation": {
|
|
"echo": true,
|
|
"reveal": "always",
|
|
"focus": false,
|
|
"panel": "dedicated",
|
|
"showReuseMessage": true,
|
|
"clear": false,
|
|
"group": "Devcontainer tasks",
|
|
"close": true
|
|
},
|
|
"runOptions": {
|
|
"runOn": "default"
|
|
},
|
|
"problemMatcher": []
|
|
},
|
|
{
|
|
"label": "Immich Web Server (Vite)",
|
|
"dependsOn": ["Fix Permissions, Install Dependencies"],
|
|
"type": "shell",
|
|
"command": "[ -f /immich-devcontainer/container-start-frontend.sh ] && /immich-devcontainer/container-start-frontend.sh || exit 0",
|
|
"isBackground": true,
|
|
"presentation": {
|
|
"echo": true,
|
|
"reveal": "always",
|
|
"focus": false,
|
|
"panel": "dedicated",
|
|
"showReuseMessage": true,
|
|
"clear": false,
|
|
"group": "Devcontainer tasks",
|
|
"close": true
|
|
},
|
|
"runOptions": {
|
|
"runOn": "default"
|
|
},
|
|
"problemMatcher": []
|
|
},
|
|
{
|
|
"label": "Immich Server and Web",
|
|
"dependsOn": ["Immich Web Server (Vite)", "Immich API Server (Nest)"],
|
|
"runOptions": {
|
|
"runOn": "folderOpen"
|
|
},
|
|
"problemMatcher": []
|
|
},
|
|
{
|
|
"label": "Build Immich CLI",
|
|
"type": "shell",
|
|
"command": "pnpm --filter cli build:dev"
|
|
}
|
|
]
|
|
}
|