Skip to content

Instantly share code, notes, and snippets.

@thiagobraga
Created September 17, 2018 18:24
Show Gist options
  • Save thiagobraga/e1f43d1a54546dec3651130261043326 to your computer and use it in GitHub Desktop.
Save thiagobraga/e1f43d1a54546dec3651130261043326 to your computer and use it in GitHub Desktop.
VS Code debug configurations for PHP and JavaScript
{
"version": "0.2.0",
"configurations": [
{
"name": "PHP Debug",
"type": "php",
"request": "launch",
"port": 9000
},
{
"name": "Chrome Debug",
"type": "chrome",
"request": "attach",
"url": "http://local.juridmais.com.br",
"port": 9222,
"webRoot": "${workspaceFolder}/"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment