Files
scrypted/plugins/google-device-access/pubsub-server/.vscode/launch.json
2021-09-08 13:19:51 -07:00

23 lines
760 B
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": "pwa-node",
"request": "launch",
"name": "Launch Program",
"skipFiles": [
"<node_internals>/**"
],
"preLaunchTask": "npm: build",
"program": "${workspaceFolder}/dist/app.js",
"env": {
"GOOGLE_CLOUD_PROJECT": "scrypted-gda-server",
"GOOGLE_APPLICATION_CREDENTIALS": "credentials.json",
"PORT": "4000"
}
}
]
}