Add info on debugging a server

This commit is contained in:
Chuck Lantz
2019-08-22 23:55:39 +00:00
parent 0e761d7c45
commit df591f421b
2 changed files with 24 additions and 2 deletions

14
.vscode/launch.json vendored
View File

@@ -8,6 +8,20 @@
"program": "${workspaceFolder}/index.php",
"cwd": "${workspaceFolder}",
"port": 9000
},
{
"name": "Listen for XDebug",
"type": "php",
"request": "launch",
"port": 9000
},
{
"name": "Launch currently open script",
"type": "php",
"request": "launch",
"program": "${file}",
"cwd": "${fileDirname}",
"port": 9000
}
]
}