Last active
March 27, 2022 23:15
-
-
Save gesquive/19d63da84b5d146e0cd7d3b5ed281913 to your computer and use it in GitHub Desktop.
vs code golang debug launch examples file
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
{ | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"name": "Golang: App", | |
"type": "go", | |
"request": "launch", | |
"mode": "debug", | |
"program": "${workspaceFolder}", | |
"args": [ | |
"--arg1", | |
"--arg2", | |
], | |
"envFile": "${workspaceFolder}/.env", | |
"env": { | |
"ENV1": "val", | |
"ENV2": "val", | |
"ENV3": "val", | |
}, | |
}, | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment