This is an experimental proof-of-concept for migrating Deis' controller component to Go. Please note that this is a work in progress, so things are subject to change.
First, install glide and ensure you're on Go 1.5+ with export GO15VENDOREXPERIMENT=1
. Then,
$ glide up
$ make && make install
To run by default at tcp://0.0.0.0:8080
:
$ api
To run at a different address:
$ api --addr tcp://127.0.0.1:4567
Or, on a unix socket!
$ api --addr unix:///var/run/api.sock