Created
September 10, 2024 11:13
-
-
Save KennFatt/1ed341aca99813f9b80b914418a0b18f to your computer and use it in GitHub Desktop.
Visual Studio code debugger launch options to run a specific main file from project's workdir (usually for my HTTP services).
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
{ | |
"configurations": [ | |
{ | |
"cwd": "${workspaceFolder}", | |
"mode": "debug", | |
"name": "Launch file", | |
"program": "${workspaceFolder}/cmd/main.go", | |
"request": "launch", | |
"type": "go" | |
} | |
], | |
"version": "0.2.0" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment