Created
June 17, 2024 22:12
-
-
Save kesavanm/f066cb910f0b50bf1136f7e09c8430b8 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
// BASH DEBUGGER Config file for VSCode | |
// 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 (simplest configuration)", | |
"program": "${file}", | |
"cwd": "${workspaceFolder}", | |
"terminalKind": "debugConsole", | |
"env": {"COLUMNS":"181", "TERM":"putty-256color", | |
"SHELL":"/bin/bash", "LIBPATH":"${workspaceFolder}/orchestrator/orchestrator/lib"}, | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment