add launch.json for xdebug

This commit is contained in:
Andrew Dolgov 2021-02-22 11:40:31 +03:00
parent 33fff26869
commit 167ed87684
1 changed files with 13 additions and 0 deletions

13
.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,13 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Listen for XDebug",
"type": "php",
"request": "launch",
"pathMappings": {
"/var/www/html/tt-rss": "${workspaceRoot}",
},
"port": 9000
}]
}