mirror of
https://github.com/immich-app/immich.git
synced 2025-12-10 17:23:12 +03:00
43 lines
889 B
JSON
43 lines
889 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"type": "node",
|
|
"request": "attach",
|
|
"restart": true,
|
|
"port": 9231,
|
|
"name": "Immich API Server",
|
|
"remoteRoot": "/usr/src/app",
|
|
"localRoot": "${workspaceFolder}/server"
|
|
},
|
|
{
|
|
"type": "node",
|
|
"request": "attach",
|
|
"restart": true,
|
|
"port": 9230,
|
|
"name": "Immich Workers",
|
|
"remoteRoot": "/usr/src/app",
|
|
"localRoot": "${workspaceFolder}/server"
|
|
},
|
|
{
|
|
"name": "Flavor - Production",
|
|
"request": "launch",
|
|
"type": "dart",
|
|
"codeLens": {
|
|
"for": [
|
|
"run-test",
|
|
"run-test-file",
|
|
"run-file",
|
|
"debug-test",
|
|
"debug-test-file",
|
|
"debug-file",
|
|
],
|
|
"title": "${debugType}",
|
|
},
|
|
"args": [
|
|
"--flavor", "production"
|
|
],
|
|
}
|
|
]
|
|
}
|