Skip to content

Instantly share code, notes, and snippets.

@haroonKhan-10p
Last active April 18, 2018 09:39
Show Gist options
  • Save haroonKhan-10p/95d1163d8166f05d86ffa5f91bac7ea8 to your computer and use it in GitHub Desktop.
Save haroonKhan-10p/95d1163d8166f05d86ffa5f91bac7ea8 to your computer and use it in GitHub Desktop.
qhoc-parse-server vscode debug settings
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "debug",
"runtimeExecutable": "npm",
"runtimeArgs": [
"run-script",
"debug"
],
"port": 9229
},
{
"type": "node",
"request": "attach",
"name": "Docker: debug",
"port": 9229,
"address": "localhost",
"localRoot": "${workspaceFolder}/../",
"remoteRoot": "/app",
"protocol": "inspector"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment