summaryrefslogtreecommitdiff
path: root/.vscode
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2021-02-22 11:40:31 +0300
committerAndrew Dolgov <[email protected]>2021-02-22 11:40:31 +0300
commit167ed87684e7eb392d2f762d7294acf4b261c5da (patch)
tree4311408c235277b8652442660f4639af7641b7c6 /.vscode
parent33fff2686946021314a24feef61032beaf48e7a4 (diff)
add launch.json for xdebug
Diffstat (limited to '.vscode')
-rw-r--r--.vscode/launch.json13
1 files changed, 13 insertions, 0 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
new file mode 100644
index 000000000..d8aee785f
--- /dev/null
+++ b/.vscode/launch.json
@@ -0,0 +1,13 @@
+{
+ "version": "0.2.0",
+ "configurations": [
+ {
+ "name": "Listen for XDebug",
+ "type": "php",
+ "request": "launch",
+ "pathMappings": {
+ "/var/www/html/tt-rss": "${workspaceRoot}",
+ },
+ "port": 9000
+ }]
+} \ No newline at end of file