Skip to content

Commit

Permalink
new lauch
Browse files Browse the repository at this point in the history
  • Loading branch information
joamag committed Oct 23, 2016
1 parent 110176d commit 09d18a2
Showing 1 changed file with 34 additions and 15 deletions.
49 changes: 34 additions & 15 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,37 @@
{
"version": "0.2.0",
"configurations": [{
"name": "Python",
"type": "python",
"request": "launch",
"pythonPath": "${config.python.pythonPath}",
"program": "${workspaceRoot}/src/budy/main.py",
"debugOptions": [
"WaitOnAbnormalExit",
"WaitOnNormalExit",
"RedirectOutput"
],
"env": {
"PYTHONPATH": "${workspaceRoot}/src:{env.PYTHONPATH}"
"configurations": [
{
"name": "Python",
"type": "python",
"request": "launch",
"pythonPath": "python",
"program": "${workspaceRoot}/src/budy/main.py",
"debugOptions": [
"WaitOnAbnormalExit",
"WaitOnNormalExit",
"RedirectOutput"
],
"env": {
"PYTHONPATH": "${workspaceRoot}/src:{env.PYTHONPATH}",
"OMNI_BOT_ENABLED": "0"
}
},
{
"name": "Python 3",
"type": "python",
"request": "launch",
"pythonPath": "python3",
"program": "${workspaceRoot}/src/budy/main.py",
"debugOptions": [
"WaitOnAbnormalExit",
"WaitOnNormalExit",
"RedirectOutput"
],
"env": {
"PYTHONPATH": "${workspaceRoot}/src:{env.PYTHONPATH}",
"OMNI_BOT_ENABLED": "0"
}
}
}]
}
]
}

0 comments on commit 09d18a2

Please sign in to comment.