From c6ca42b8e533aadac3622c91f9b5b456e9d465d2 Mon Sep 17 00:00:00 2001 From: Anatolii Bazko Date: Fri, 22 Mar 2024 11:43:47 +0100 Subject: [PATCH] chore: Add recommended extensions and debug configuration Signed-off-by: Anatolii Bazko --- .vscode/extensions.json | 6 ++++++ .vscode/launch.json | 20 ++++++++++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 .vscode/extensions.json create mode 100644 .vscode/launch.json diff --git a/.vscode/extensions.json b/.vscode/extensions.json new file mode 100644 index 0000000..f53e47e --- /dev/null +++ b/.vscode/extensions.json @@ -0,0 +1,6 @@ +{ + "recommendations": [ + "ms-python.python", + "ms-python.debugpy" + ] +} \ No newline at end of file diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..9454627 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,20 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "name": "Python Debugger: Remote Attach", + "type": "debugpy", + "request": "attach", + "connect": { + "host": "localhost", + "port": 5858 + }, + "pathMappings": [ + { + "localRoot": "${workspaceFolder}", + "remoteRoot": "." + } + ] + } + ] +} \ No newline at end of file