Skip to content

Commit

Permalink
set working directory correctly for debugging from VS Code
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesatheyDDS committed Jan 7, 2019
1 parent 5b90514 commit 586685f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .vscode/launch.json
Expand Up @@ -24,14 +24,15 @@
},
{
"name": "webserver",
"cwd": "${workspaceRoot}",
"type": "go",
"request": "launch",
"mode": "debug",
"remotePath": "",
"port": 2345,
"host": "127.0.0.1",
"program": "${workspaceRoot}/cmd/webserver/main.go",
"env": {},
"env": {"INTERFACE":"localhost", "DEBUG_LOGGING":"true"},
"args": [],
"showLog": true
}
Expand Down

0 comments on commit 586685f

Please sign in to comment.