From 514468caf6237e68610f4bdfd99196eb85c55dfc Mon Sep 17 00:00:00 2001 From: Trevor SANDY Date: Sat, 4 Apr 2026 17:08:28 +0200 Subject: [PATCH] VSCode config --- .vscode/launch.json | 50 +++++++++++++++++++++++++++++++++++++++++++ .vscode/settings.json | 9 ++++++++ 2 files changed, 59 insertions(+) create mode 100644 .vscode/launch.json create mode 100644 .vscode/settings.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..eaea56a --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,50 @@ +{ + // 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": [ + { + "type": "bashdb", + "request": "launch", + "name": "Bash-Debug (auto_config.sh)", + "cwd": "${workspaceFolder}", + "program": "${workspaceFolder}/access/auto_config.sh", + "args": [] + }, + { + "type": "bashdb", + "request": "launch", + "name": "Bash-Debug (select script from list of sh files)", + "cwd": "${workspaceFolder}", + "program": "${command:SelectScriptName}", + "args": [] + }, + { + "name": "PowerShell Launch Current File", + "type": "PowerShell", + "request": "launch", + "script": "${file}", + "cwd": "${cwd}" + }, + { + "name": "Python Debugger: Current File with Arguments", + "type": "debugpy", + "request": "launch", + "program": "${file}", + "console": "integratedTerminal", + "args": "--profile ai-all --operation update --log debug" + //"args": "--profile n8n open-webui supabase opencode --operation update --log debug" + //"args": "${command:pickArgs}" + }, + { + "name": "Python Debugger: (suite_services.py) with Arguments", + "type": "debugpy", + "request": "launch", + "program": "${workspaceFolder}/suite_services.py", + "console": "integratedTerminal", + "args": "--profile ai-all --operation install --log debug" + //"args": "--profile n8n open-webui supabase opencode --operation update --log debug" + } + ] +} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..78b58ae --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,9 @@ +// filename: .vscode/settings.json +{ + "python.envFile": "${workspaceFolder}/.env", + "python.terminal.useEnvFile": true , + "python.terminal.activateEnvironment": true, + "python.terminal.activateEnvInCurrentTerminal": false, + "python-envs.defaultEnvManager": "ms-python.python:system", + "python-envs.defaultPackageManager": "ms-python.python:pip" +} \ No newline at end of file