main
parent
2721fb7104
commit
c4bb7fc554
4 changed files with 94 additions and 83 deletions
@ -1,5 +1,3 @@ |
|||||||
{ |
{ |
||||||
"recommendations": [ |
"recommendations": ["johnpapa.vscode-peacock"] |
||||||
"johnpapa.vscode-peacock" |
} |
||||||
] |
|
||||||
} |
|
||||||
|
@ -1,25 +1,25 @@ |
|||||||
{ |
{ |
||||||
"workbench.colorCustomizations": { |
"workbench.colorCustomizations": { |
||||||
"activityBar.activeBackground": "#0bba5d", |
"activityBar.activeBackground": "#0bba5d", |
||||||
"activityBar.activeBorder": "#eee1fd", |
"activityBar.activeBorder": "#eee1fd", |
||||||
"activityBar.background": "#0bba5d", |
"activityBar.background": "#0bba5d", |
||||||
"activityBarBadge.background": "#eee1fd", |
"activityBarBadge.background": "#eee1fd", |
||||||
"activityBarBadge.foreground": "#15202b", |
"activityBarBadge.foreground": "#15202b", |
||||||
"statusBar.background": "#088a45", |
"statusBar.background": "#088a45", |
||||||
"statusBarItem.hoverBackground": "#0bba5d", |
"statusBarItem.hoverBackground": "#0bba5d", |
||||||
"titleBar.activeBackground": "#088a45", |
"titleBar.activeBackground": "#088a45", |
||||||
"titleBar.inactiveBackground": "#088a4599", |
"titleBar.inactiveBackground": "#088a4599", |
||||||
"activityBar.foreground": "#e7e7e7", |
"activityBar.foreground": "#e7e7e7", |
||||||
"activityBar.inactiveForeground": "#e7e7e799", |
"activityBar.inactiveForeground": "#e7e7e799", |
||||||
"statusBar.foreground": "#e7e7e7", |
"statusBar.foreground": "#e7e7e7", |
||||||
"titleBar.activeForeground": "#e7e7e7", |
"titleBar.activeForeground": "#e7e7e7", |
||||||
"titleBar.inactiveForeground": "#e7e7e799", |
"titleBar.inactiveForeground": "#e7e7e799", |
||||||
"statusBarItem.remoteBackground": "#088a45", |
"statusBarItem.remoteBackground": "#088a45", |
||||||
"statusBarItem.remoteForeground": "#e7e7e7", |
"statusBarItem.remoteForeground": "#e7e7e7", |
||||||
"sash.hoverBorder": "#0bba5d", |
"sash.hoverBorder": "#0bba5d", |
||||||
"commandCenter.border": "#e7e7e799" |
"commandCenter.border": "#e7e7e799" |
||||||
}, |
}, |
||||||
"peacock.color": "#088a45", |
"peacock.color": "#088a45", |
||||||
"todo-tree.tree.disableCompactFolders": false, |
"todo-tree.tree.disableCompactFolders": false, |
||||||
"todo-tree.tree.showBadges": true |
"todo-tree.tree.showBadges": true |
||||||
} |
} |
||||||
|
@ -1,55 +1,68 @@ |
|||||||
{ |
{ |
||||||
// See https://go.microsoft.com/fwlink/?LinkId=733558 |
"version": "2.0.0", |
||||||
// for the documentation about the tasks.json format |
"tasks": [ |
||||||
"version": "2.0.0", |
{ |
||||||
"tasks": [ |
"label": "build", |
||||||
{ |
"type": "shell", |
||||||
"label": "build linux", |
"group": { |
||||||
"type": "shell", |
"kind": "build", |
||||||
"group": { |
"isDefault": true |
||||||
"kind": "build", |
}, |
||||||
"isDefault": true |
"presentation": { |
||||||
}, |
"echo": true, |
||||||
"presentation": { |
"panel": "new" |
||||||
"echo": true, |
}, |
||||||
"panel": "new" |
"options": { |
||||||
}, |
"cwd": "${workspaceRoot}", |
||||||
"options": { |
"env": { |
||||||
"cwd": "${workspaceRoot}", |
"APP": "authDBService", |
||||||
"env": { |
"GOOS": "linux", |
||||||
"APP": "pakitara", |
"GOARCH": "amd64", |
||||||
"GOOS": "linux", |
"GOBIN": "${env:GOPATH}/bin" |
||||||
"GOARCH": "amd64", |
|
||||||
"GOBIN": "${env:GOPATH}/bin" |
|
||||||
}, |
|
||||||
"args": [ |
|
||||||
"ldflags '-s -w'" |
|
||||||
] |
|
||||||
}, |
|
||||||
"command": "go build -o $GOBIN/$APP-$GOOS-$GOARCH -ldflags \"-s -w\" $APP.go", |
|
||||||
"problemMatcher": [] |
|
||||||
}, |
}, |
||||||
{ |
"args": ["ldflags '-s -w'"] |
||||||
"label": "build windows", |
}, |
||||||
"type": "shell", |
"command": "go build -o $GOBIN/$APP-$GOOS-$GOARCH -ldflags \"-s -w\" ./cmd/main.go", |
||||||
"group": "build", |
"problemMatcher": [] |
||||||
"presentation": { |
}, |
||||||
"echo": true, |
{ |
||||||
"panel": "new" |
"label": "docker-build", |
||||||
}, |
"type": "shell", |
||||||
"options": { |
"group": { |
||||||
"cwd": "${workspaceRoot}", |
"kind": "build" |
||||||
"env": { |
}, |
||||||
"APP": "pakitara", |
"presentation": { |
||||||
"GOOS": "windows", |
"echo": true, |
||||||
"GOARCH": "amd64", |
"panel": "new" |
||||||
"GOBIN": "${env:GOPATH}/bin" |
}, |
||||||
}, |
"options": { |
||||||
"args": [ |
"cwd": "${workspaceRoot}", |
||||||
"ldflags '-s -w'" |
"env": { |
||||||
] |
"TAG": "slaventius/test3k_auth_db:latest" |
||||||
}, |
}, |
||||||
"command": "go build -o $GOBIN\\$APP-$GOOS-$GOARCH.exe -ldflags \"-s -w\" $APP.go" |
"args": ["--no-cache", "--tag $TAG"] |
||||||
|
}, |
||||||
|
"command": "sudo docker build --no-cache --tag $TAG ./build/", |
||||||
|
"problemMatcher": [] |
||||||
|
}, |
||||||
|
{ |
||||||
|
"label": "docker-push", |
||||||
|
"type": "shell", |
||||||
|
"group": { |
||||||
|
"kind": "build" |
||||||
|
}, |
||||||
|
"presentation": { |
||||||
|
"echo": true, |
||||||
|
"panel": "new" |
||||||
|
}, |
||||||
|
"options": { |
||||||
|
"cwd": "${workspaceRoot}", |
||||||
|
"env": { |
||||||
|
"TAG": "slaventius/test3k_auth_db:latest" |
||||||
} |
} |
||||||
] |
}, |
||||||
} |
"command": "sudo docker push $TAG", |
||||||
|
"problemMatcher": [] |
||||||
|
} |
||||||
|
] |
||||||
|
} |
||||||
|
Loading…
Reference in new issue