c99f40bb20
Release pipeline / Get version (push) Has been cancelled
Release pipeline / Get Chart Name (push) Has been cancelled
Release pipeline / tests (push) Has been cancelled
Release pipeline / builds (push) Has been cancelled
Release pipeline / builds-ghcr (push) Has been cancelled
Release pipeline / test-deployments (push) Has been cancelled
Release pipeline / deploy (push) Has been cancelled
Release pipeline / Helm chart oci (push) Has been cancelled
Release pipeline / npm (push) Has been cancelled
Release pipeline / snyk (push) Has been cancelled
38 lines
1.1 KiB
JSON
38 lines
1.1 KiB
JSON
{
|
|
// Use IntelliSense to learn about possible attributes.
|
|
// Hover to view descriptions of existing attributes.
|
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"type": "chrome",
|
|
"request": "launch",
|
|
"name": "Launch Chrome against localhost",
|
|
"url": "http://localhost:3033",
|
|
"webRoot": "${workspaceFolder}"
|
|
},
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "Debug Speckle Server",
|
|
"cwd": "${workspaceFolder}",
|
|
"runtimeExecutable": "node",
|
|
"runtimeArgs": ["${workspaceFolder}/.yarn/releases/yarn-4.5.0.cjs", "workspace", "@speckle/server", "dev"],
|
|
"console": "integratedTerminal",
|
|
"restart": true,
|
|
"autoAttachChildProcesses": true,
|
|
"skipFiles": ["<node_internals>/**"]
|
|
},
|
|
{
|
|
"type": "node",
|
|
"request": "attach",
|
|
"name": "Attach to Speckle Server (WSL)",
|
|
"port": 9229,
|
|
"address": "localhost",
|
|
"localRoot": "${workspaceFolder}/packages/server",
|
|
"remoteRoot": "/mnt/e/speckle-server/packages/server",
|
|
"restart": true
|
|
}
|
|
]
|
|
}
|