This file contains hidden or 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
| sorig:kjbug bgeorges$ mvn clean package | |
| [INFO] Scanning for projects... | |
| [INFO] | |
| [INFO] -------------------------< com.example:kjbug >-------------------------- | |
| [INFO] Building Spring Boot - CRUD Demo 1.0 | |
| [INFO] --------------------------------[ jar ]--------------------------------- | |
| [INFO] | |
| [INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ kjbug --- | |
| [INFO] | |
| [INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ kjbug --- |
This file contains hidden or 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
| rm -rf kjbug | |
| mkdir kjbug && cd kjbug | |
| oc cluster up | |
| oc login -u system:admin | |
| sudo curl -L https://github.com/snowdrop/k8s-supervisor/releases/download/v0.8.0/sb-darwin-amd64 -o /usr/local/bin/sb | |
| sb version | |
| sb v0.8.0 (40ed39d) |
This file contains hidden or 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
| # pre-req | |
| go [ including go PATH] | |
| oc | |
| # set Go workspace [defaulting to $HOME] | |
| mkdir -p ~/go/src ~/go/pkg ~/go/bin | |
| export GOPATH=$HOME/go | |
| export PATH=$PATH:$(go env GOPATH)/bin | |
| export GOPATH=$(go env GOPATH) | |
| # then create your source folder, i.e for me |