tinytinyrss/.vscode/launch.json

25 lines
553 B
JSON
Raw Permalink Normal View History

2021-02-22 09:40:31 +01:00
{
"version": "0.2.0",
"configurations": [
2021-02-24 20:28:49 +01:00
{
"name": "Listen for XDebug",
"type": "php",
"request": "launch",
"pathMappings": {
"/var/www/html/tt-rss": "${workspaceRoot}",
},
"port": 9000
},
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-24 20:28:49 +01:00
}
]
}