From 51a50a8c1b35d88ae9f8bbbe8c4849d24eac7235 Mon Sep 17 00:00:00 2001 From: "Kaz Saita(raspi4)" Date: Sat, 30 Mar 2024 12:01:47 +0900 Subject: [PATCH] add vscode debug setting --- .vscode/launch.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..d187b87 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,13 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "type" : "debugpy", + "request": "launch", + "name": "Launch project", + "cwd": "${workspaceFolder}", + "module": "python-project-template", + //"args": ["run", "python", "-m", "python-project-template"], + } +] +} \ No newline at end of file