From c778e2aa980992e9158e2429acafd7a7ba655105 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn-Michael=20Miehe?= <40151420+ldericher@users.noreply.github.com> Date: Thu, 17 Mar 2022 17:06:23 +0000 Subject: [PATCH] VSCode launch config --- api/.vscode/launch.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 api/.vscode/launch.json diff --git a/api/.vscode/launch.json b/api/.vscode/launch.json new file mode 100644 index 0000000..20bb070 --- /dev/null +++ b/api/.vscode/launch.json @@ -0,0 +1,15 @@ +{ + // Verwendet IntelliSense zum Ermitteln möglicher Attribute. + // Zeigen Sie auf vorhandene Attribute, um die zugehörigen Beschreibungen anzuzeigen. + // Weitere Informationen finden Sie unter https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "name": "Python: Modul", + "type": "python", + "request": "launch", + "module": "kiwi_vpn_api.main", + "justMyCode": true + } + ] +} \ No newline at end of file