Skip to content

Instantly share code, notes, and snippets.

@cking
Created April 2, 2017 12:36
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 cking/d773f9835a2931cc5359f799c949b3bd to your computer and use it in GitHub Desktop.
Save cking/d773f9835a2931cc5359f799c949b3bd to your computer and use it in GitHub Desktop.
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch",
"type": "go",
"request": "launch",
"mode": "debug",
"remotePath": "",
"port": 2345,
"host": "127.0.0.1",
"program": "${workspaceRoot}",
"env": {
"LOGXI": "*",
"LOGXI_FORMAT": "happy"
},
"args": [],
"showLog": true
}
]
}
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "0.1.0",
"command": "go",
"isShellCommand": true,
"args": ["build", "-v"],
"showOutput": "always",
"options": {
"env": {
"GOOS": "linux",
"GOARCH": "amd64"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment