###Environment Setup Steps:
1.Install Go for server dev.
2.Run the following to setup Go cross compilation (used to create linux executables on a mac).
$ cd $(go env GOROOT)/src
$ git clone git://github.com/davecheney/golang-crosscompile.git
$ source golang-crosscompile/crosscompile.bash
$ go-crosscompile-build-all
3.Run the following to install nvm and Node.js.
$ git clone https://github.com/creationix/nvm.git ~/.nvm
$ source ~/.nvm/nvm.sh
$ nvm install 0.10.26
4.The automated dev enviroment uses autoenv so install it with the following commands.
$ git clone git://github.com/kennethreitz/autoenv.git ~/.autoenv
$ echo 'source ~/.autoenv/activate.sh' >> ~/.profile
5.Clone this repo to your project directory.
$ cd path/to/your/project
$ git clone https://github.com/Inspiravetion/Random-Rule-Game.git