Skip to content

Instantly share code, notes, and snippets.

@ironcladlou
Created February 14, 2018 17:26
Show Gist options
  • Save ironcladlou/35566185ab2ed4c571e06b25e89774a1 to your computer and use it in GitHub Desktop.
Save ironcladlou/35566185ab2ed4c571e06b25e89774a1 to your computer and use it in GitHub Desktop.
Health Check App VSCode settings
{
"files.exclude": {
"_output": true,
".tito": true,
},
"go.testTimeout": "5s",
"go.goroot": "/Users/dan/.go/dist/go1.9.4",
"go.toolsGopath": "/Users/dan/Projects/monitor-project-lifecycle",
"go.gopath": "/Users/dan/Projects/monitor-project-lifecycle"
}
{
"version": "0.1.0",
"command": "go",
"isShellCommand": false,
"showOutput": "silent",
"options": {
"env": {
"GOPATH": "/Users/dan/Projects/monitor-project-lifecycle"
}
},
"tasks": [
{
"taskName": "install",
"args": [
"-v",
"github.com/openshift/monitor-project-lifecycle/cmd/monitor"
],
"isBuildCommand": true,
"problemMatcher": "$go"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment