Server installation guide

Dependencies

tsuru depends on Go and libyaml.

To install Go, follow the official instructions in the language website: http://golang.org/doc/install.

To install libyaml, you can use one package manager, or download it and install it from source. To install from source, follow the instructions on PyYAML wiki: http://pyyaml.org/wiki/LibYAML.

The following instructions are system specific:

FreeBSD

$ cd /usr/ports/textproc/libyaml
$ make install clean

Mac OS X (homebrew)

$ brew install libyaml

Ubuntu

$ [sudo] apt-get install libyaml-dev

CentOS

$ [sudo] yum install libyaml-devel

Installation

After installing and configuring go, and installing libyaml, just run in your terminal:

$ go get github.com/tsuru/tsuru/...

Server configuration

TODO!