I hereby claim:
- I am bscott on github.
- I am brianscott (https://keybase.io/brianscott) on keybase.
- I have a public key ASBivyaVWIonmIXRs2KguWa_ZysI_TWpIS9UmWj5e2AcQgo
To claim this, I am signing this object:
| FROM billyteves/alpine-golang-glide:1.2.0 | |
| ADD . /go/src/app | |
| WORKDIR /go/src/app | |
| RUN glide install | |
| RUN go install . | |
| ENTRYPOINT /go/bin/app | |
| EXPOSE 3000 |
| // my own helper functions | |
| func trimQuotes(s string) string { | |
| if len(s) >= 2 { | |
| if s[0] == '"' && s[len(s)-1] == '"' { | |
| return s[1 : len(s)-1] | |
| } | |
| } | |
| return s | |
| } |
| $ buffalo dev | |
| Buffalo version v0.9.0 | |
| buffalo: 2017/06/30 01:03:24 === Rebuild on: :start: === | |
| buffalo: 2017/06/30 01:03:24 === Running: go build -v -i -o tmp/golangflow-build (PID: 1735) === | |
| github.com/bscott/golangflow/vendor/github.com/mitchellh/go-homedir | |
| github.com/bscott/golangflow/vendor/github.com/fatih/color/vendor/github.com/mattn/go-isatty | |
| github.com/bscott/golangflow/vendor/github.com/fatih/color/vendor/github.com/mattn/go-colorable | |
| github.com/bscott/golangflow/vendor/github.com/go-sql-driver/mysql | |
| github.com/bscott/golangflow/vendor/github.com/jmoiron/sqlx/reflectx |
I hereby claim:
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| FROM gobuffalo/buffalo:development as builder | |
| ENV BP=$GOPATH/src/github.com/gopherguides/web | |
| RUN mkdir -p $BP | |
| WORKDIR $BP | |
| ADD package.json . | |
| RUN npm install | |
| ADD . . |
| func errorf(format string, args ...interface{}) { | |
| fmt.Fprintf(os.Stderr, format, args...) | |
| } |
| { | |
| "version": "0.2.0", | |
| "configurations": [ | |
| { | |
| "name": "Launch", | |
| "type": "go", | |
| "request": "launch", | |
| "mode": "debug", | |
| "remotePath": "", |
| { | |
| "version": "0.2.0", | |
| "configurations": [ | |
| { | |
| "name": "Launch", | |
| "type": "go", | |
| "request": "launch", | |
| "mode": "exec", | |
| "remotePath": "", |
| #!/bin/bash | |
| set -e | |
| GVERSION="1.7" | |
| GFILE="go$GVERSION.linux-amd64.tar.gz" | |
| GOPATH="$HOME/go" | |
| GOROOT="/usr/local/go" | |
| if [ -d $GOROOT ]; then | |
| echo "Installation directory already exists $GOROOT" |