From 09d18a286f31b828fc25dbed00d5ce51263e2b81 Mon Sep 17 00:00:00 2001 From: joamag Date: Sun, 23 Oct 2016 01:13:37 +0100 Subject: [PATCH] new lauch --- .vscode/launch.json | 49 +++++++++++++++++++++++++++++++-------------- 1 file changed, 34 insertions(+), 15 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 47f6a907..c5aa9586 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -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" + } } - }] -} + ] +} \ No newline at end of file