VSCode config

This commit is contained in:
Trevor SANDY
2026-05-15 00:20:43 +02:00
parent fcabc1b03e
commit 514468caf6
2 changed files with 59 additions and 0 deletions
+50
View File
@@ -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"
}
]
}
+9
View File
@@ -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"
}