From d7c309a585e43fe8d8bfceae5e29c61055ea9b56 Mon Sep 17 00:00:00 2001 From: Kumi Date: Wed, 12 Jun 2024 12:07:29 +0200 Subject: [PATCH] feat: add VSCode debug configuration for Python Introduces a new VSCode debug configuration to streamline debugging for Python scripts. This configuration includes settings to launch the main.py program using the integrated terminal within the current workspace and sets an environment variable for development purposes. --- .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..eb2d0bb --- /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", + "type": "debugpy", + "request": "launch", + "program": "main.py", + "console": "integratedTerminal", + "cwd": "${workspaceFolder}", + "env": { + "PRIVATECOFFEE_DEV": "1" + } + } + ] +} \ No newline at end of file