summaryrefslogtreecommitdiff
path: root/.vscode/launch.json
blob: 0e10b4b235d4325f360fc52204f963323d55f439 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
   "version": "0.2.0",
   "configurations": [
      {
         "name": "Launch Chrome",
         "request": "launch",
         "type": "chrome",
         "pathMapping": {
            "/tt-rss/": "${workspaceFolder}"
         },
         "urlFilter": "*/tt-rss/*",
         "runtimeExecutable": "chrome.exe",
      },
      {
      "name": "Listen for XDebug",
      "type": "php",
      "request": "launch",
      "pathMappings": {
         "/var/www/html/tt-rss": "${workspaceRoot}",
      },
      "port": 9000
  }]
}