From b33839ba4aa5e05e7ad3c03941f878a826afba1e Mon Sep 17 00:00:00 2001 From: Hofer-Julian Date: Mon, 26 Feb 2024 11:47:45 +0100 Subject: [PATCH] Add launch config for playground --- .vscode/launch.json | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index ba6cd8152..f6c774f6a 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -1,7 +1,7 @@ { "version": "0.2.0", "configurations": [ - { + { "type": "julia", "request": "launch", "name": "Julia: current file", @@ -17,6 +17,13 @@ "host": "localhost", "port": 5678, "justMyCode": false + }, + { + "name": "Python Playground", + "type": "debugpy", + "request": "launch", + "program": "${workspaceFolder}/playground/playground.py", + "console": "integratedTerminal" } ] }