From 2251cd3a2fe8c54c1e9579a6f7d90f4b7f2fdf3f Mon Sep 17 00:00:00 2001 From: Suhas Date: Tue, 2 Feb 2021 20:18:07 -0500 Subject: [PATCH] include vscode debugging config --- .vscode/launch.json | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 00000000..10c69012 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,28 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "name": "behave", + "type": "python", + "request": "launch", + progrma: "behave", // adjust as needed for virtualenv + "args": [ + ], + "justMyCode": true, + "console": "integratedTerminal" + }, + { + "name": "Jrnl", + "type": "python", + "request": "launch", + program: "jrnl", //adjust as needed for virtualenv + "args": [ + ], + "justMyCode": false, + "console": "integratedTerminal" + } + ], +}