Skip to content

Instantly share code, notes, and snippets.

@LC43
Last active March 23, 2023 17:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save LC43/ce5008e6c178da95a03b245766e9996c to your computer and use it in GitHub Desktop.
Save LC43/ce5008e6c178da95a03b245766e9996c to your computer and use it in GitHub Desktop.
Visual studio code Xdebug config for VVV virtual machine
{
"version": "0.2.0",
"configurations": [
{
"name": "Listen for XDebug on VVV",
"type": "php",
"request": "launch",
"pathMappings": {
// "/path/inside/vvv/public_html/to/repo": "/path/outside/vvv/www/site-name/public_html/to/repo"
"/srv/www/demo-php-latest/public_html": "/srv/vm/vvv/vvv-demo/www/demo-php-latest/public_html"
},
"port": 9003,
"log": true
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment