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