summaryrefslogtreecommitdiffstats
path: root/.vscode/launch.json
diff options
context:
space:
mode:
authorguillaume <guillaume.cassou@orange.fr>2019-08-30 17:18:29 +0200
committerguillaume <guillaume.cassou@orange.fr>2019-08-30 17:18:29 +0200
commit618340275476ac1008400c975122dd2851d0ac59 (patch)
tree679aaf0ae9433965a8b9ac43d20b21fd4d840d6d /.vscode/launch.json
parent663ba26d4dd0bba8330496a76035b1674031a299 (diff)
parentd1ab787215adb83064a5be4678e7073ba71fbb22 (diff)
downloadwekan-618340275476ac1008400c975122dd2851d0ac59.tar.gz
wekan-618340275476ac1008400c975122dd2851d0ac59.tar.bz2
wekan-618340275476ac1008400c975122dd2851d0ac59.zip
Merge branch 'master' of https://github.com/wekan/wekan
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"]
+ }
+ ]
+}