Skip to content

Commit

Permalink
Merge pull request #8 from johanste/master
Browse files Browse the repository at this point in the history
Add launch.json for debugging support in vscode
  • Loading branch information
johanste committed Feb 20, 2016
2 parents a3a6cd6 + d70a0b1 commit 119324e
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Python",
"type": "python",
"request": "launch",
"stopOnEntry": true,
"pythonPath":"python",
"program": "${workspaceRoot}/src/azure/cli/__main__.py",
"cwd": "${workspaceRoot}/src",
"args": ["login", "--help"],
"debugOptions": [
"WaitOnAbnormalExit",
"WaitOnNormalExit",
"RedirectOutput"
]
}
]
}

0 comments on commit 119324e

Please sign in to comment.