From cb55fa8ce489e5cb5473e2cb656bf1389c8c8219 Mon Sep 17 00:00:00 2001 From: Dan Date: Fri, 24 Jan 2025 22:07:57 -0500 Subject: [PATCH] Added an easy launch --- .vscode/launch.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..657e5ab --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,16 @@ +{ + // 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": "Run Quartessa", + "type": "debugpy", + "request": "launch", + "program": "E:\\Development\\AI Development\\Quartessa\\main.py", + "console": "integratedTerminal", + } + ] +} \ No newline at end of file