Skip to content

Latest commit

 

History

History
38 lines (27 loc) · 999 Bytes

README.md

File metadata and controls

38 lines (27 loc) · 999 Bytes

bouncer

Build Status

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.

Setup

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

Editing code

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.