s-mang / hipbot-go

Hipchat bot written in Go
30 stars 5 forks source link

building outside of heroku #1

Open spheromak opened 10 years ago

spheromak commented 10 years ago

Would be sweet to have a Makefile or a go-get able setup that doesn't require heroku buildpack to build.

Mainly it's just getting the right deps in place and running go build.

bfosberry commented 9 years ago

Right now you should be able to run

$ go get github.com/adams-sarah/hipbot-go
$ cd $GOPATH/src/github.com/adams-sarah/hipbot-go/
$ go get ./...
$ go build ./...
s-mang commented 9 years ago

@bfosberry thank you for responding to that one! I missed it somehow.

You can actually even do it in one line, for giggles:

$ go get github.com/adams-sarah/hipbot-go/...

Cheers!

bfosberry commented 9 years ago

Oh nice!