Toughest guy in the hood.
Note: we have moved the authentication service over to Gitlab so as to keep the repository private. This repo remains as a decommissioned product.
Please ensure you have Go installed.
You can check if you have Go installed properly by typing:
$ go help
Once done, pull down Bouncer via the command:
$ go get github.com/gobbl/bouncer
To install all dependencies of bouncer, simply:
$ go get ./...
Build the code, and run the server by:
$ go build
$ go run app.go
We need to avoid importing unnecessary libraries, to which Golang would complain :)
To help us with that, you can install goimports
which cleans up imports as well as formatting code.