From ef1dd3f49bb936e30afdf6ac450f229753da40f9 Mon Sep 17 00:00:00 2001 From: Thomas Kleinendorst Date: Sun, 7 Apr 2024 23:17:35 +0200 Subject: [PATCH] Add launch.json configuration --- .vscode/launch.json | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..bf8eff2 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,19 @@ +{ + // 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": "Python Debugger: Current File with Arguments", + "type": "debugpy", + "request": "launch", + "program": "${file}", + "console": "integratedTerminal", + "args": [ + "wireguard.arnhem", + "--credential-file", "./cloudflare_token.ini" + ] + } + ] +} \ No newline at end of file