summaryrefslogtreecommitdiffstats
path: root/.vscode/launch.json
diff options
context:
space:
mode:
authorLauri Ojansivu <x@xet7.org>2019-08-28 16:43:43 +0300
committerGitHub <noreply@github.com>2019-08-28 16:43:43 +0300
commit362220299f7739681d7265040d8550e267d2281d (patch)
treec6186fa890514303259dd20028b89fbe58ab2942 /.vscode/launch.json
parent60e8deb06439eaf923eeaebb6b5e565f5abd3642 (diff)
parentdbdb26a0444598cb6757cfb41f2abf74a89ed124 (diff)
downloadwekan-362220299f7739681d7265040d8550e267d2281d.tar.gz
wekan-362220299f7739681d7265040d8550e267d2281d.tar.bz2
wekan-362220299f7739681d7265040d8550e267d2281d.zip
Merge pull request #2660 from Scherdel/master
Fixed endless compilation devcontainer and added debugging launch.conf
Diffstat (limited to '.vscode/launch.json')
-rw-r--r--.vscode/launch.json28
1 files changed, 28 insertions, 0 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
new file mode 100644
index 00000000..243eeb20
--- /dev/null
+++ b/.vscode/launch.json
@@ -0,0 +1,28 @@
+{
+ "version": "0.2.0",
+ "configurations": [
+ {
+ "type": "chrome",
+ "request": "launch",
+ "name": "Meteor: Chrome",
+ "url": "http://localhost:3000",
+ "webRoot": "${workspaceFolder}"
+ },
+ {
+ "type": "node",
+ "request": "launch",
+ "name": "Meteor: Node",
+ "runtimeExecutable": "/home/wekan/.meteor/meteor",
+ "runtimeArgs": ["run", "--inspect-brk=9229"],
+ "outputCapture": "std",
+ "port": 9229,
+ "timeout": 60000
+ }
+ ],
+ "compounds": [
+ {
+ "name": "Meteor: All",
+ "configurations": ["Meteor: Node", "Meteor: Chrome"]
+ }
+ ]
+}