ttrss/.vscode/launch.json

23 lines
521 B
JSON
Raw Normal View History

2021-02-22 09:40:31 +01:00
{
"version": "0.2.0",
"configurations": [
2021-02-22 11:44:25 +01:00
{
"name": "Launch Chrome",
"request": "launch",
"type": "chrome",
"pathMapping": {
"/tt-rss/": "${workspaceFolder}"
},
"urlFilter": "*/tt-rss/*",
"runtimeExecutable": "chrome.exe",
},
{
2021-02-22 09:40:31 +01:00
"name": "Listen for XDebug",
"type": "php",
"request": "launch",
"pathMappings": {
"/var/www/html/tt-rss": "${workspaceRoot}",
},
"port": 9000
}]
}