Skip to content

Commit fbe4abd

Browse files
author
Jason Rhubottom
committed
Initial checkin
0 parents  commit fbe4abd

File tree

4 files changed

+1314
-0
lines changed

4 files changed

+1314
-0
lines changed

.vscode/launch.json

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"name": "Launch",
6+
"type": "node",
7+
"request": "launch",
8+
"program": "${workspaceRoot}/../homebridge/bin/homebridge",
9+
"stopOnEntry": false,
10+
"args": [
11+
"-D",
12+
"-P",
13+
"${workspaceRoot}",
14+
"-U",
15+
"${workspaceRoot}/config"
16+
],
17+
"cwd": "${workspaceRoot}/../homebridge/",
18+
"preLaunchTask": null,
19+
"runtimeExecutable": null,
20+
"runtimeArgs": [
21+
"--nolazy"
22+
],
23+
"env": {
24+
"NODE_ENV": "development"
25+
},
26+
"console": "internalConsole",
27+
"sourceMaps": false,
28+
"outFiles": []
29+
},
30+
{
31+
"name": "Attach",
32+
"type": "node",
33+
"request": "attach",
34+
"port": 5858,
35+
"address": "localhost",
36+
"restart": false,
37+
"sourceMaps": false,
38+
"outFiles": [],
39+
"localRoot": "${workspaceRoot}",
40+
"remoteRoot": null
41+
},
42+
{
43+
"name": "Attach to Process",
44+
"type": "node",
45+
"request": "attach",
46+
"processId": "${command.PickProcess}",
47+
"port": 5858,
48+
"sourceMaps": false,
49+
"outFiles": []
50+
}
51+
]
52+
}

0 commit comments

Comments
 (0)