Last active
March 23, 2023 17:38
-
-
Save LC43/ce5008e6c178da95a03b245766e9996c to your computer and use it in GitHub Desktop.
Visual studio code Xdebug config for VVV virtual machine
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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