Skip to content

Instantly share code, notes, and snippets.

@gesquive
Last active March 27, 2022 23:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gesquive/19d63da84b5d146e0cd7d3b5ed281913 to your computer and use it in GitHub Desktop.
Save gesquive/19d63da84b5d146e0cd7d3b5ed281913 to your computer and use it in GitHub Desktop.
vs code golang debug launch examples file
{
"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