From df8b99dce4a24f72b75e71a675f4d2ef8eb8b027 Mon Sep 17 00:00:00 2001 From: scito Date: Wed, 7 Sep 2022 21:49:29 +0200 Subject: [PATCH] add debug launch config for folder and workspace --- extract_otp_secret_keys.code-workspace | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/extract_otp_secret_keys.code-workspace b/extract_otp_secret_keys.code-workspace index fa59c7e..3d6220a 100644 --- a/extract_otp_secret_keys.code-workspace +++ b/extract_otp_secret_keys.code-workspace @@ -6,5 +6,20 @@ ], "settings": { "python.testing.pytestEnabled": true + }, + "launch": { + "version": "0.2.0", + "configurations": [ + { + "name": "Python: extract_otp_secret_keys.py", + "type": "python", + "request": "launch", + "program": "extract_otp_secret_keys.py", + "args": [ + "example_export.txt" + ], + "console": "integratedTerminal" + }, + ] } -} \ No newline at end of file +}