github.com/mmatczuk/gohan@v0.0.0-20170206152520-30e45d9bdb69/docs/installation.md (about) 1 # Installation 2 3 You can download Gohan binary for your platfrom from 4 github release page. 5 6 7 ## Download Binary 8 9 * Download [Gohan Release](https://github.com/cloudwan/gohan/releases) 10 * Start server: `./gohan server --config-file etc/gohan.yaml` 11 12 ## Build 13 14 * Install GO >= 1.6 15 * go get github.com/cloudwan/gohan 16 17 # Packages 18 19 ## Ubuntu 14.04 Trusty 64bits server 20 ``` 21 wget -qO - https://deb.packager.io/key | sudo apt-key add - 22 echo "deb https://deb.packager.io/gh/cloudwan/gohan trusty master" | sudo tee /etc/apt/sources.list.d/gohan.list 23 sudo apt-get update 24 sudo apt-get install gohan 25 ``` 26 ## CentOS / RHEL 6 64 bits server 27 28 ``` 29 sudo rpm --import https://rpm.packager.io/key 30 echo "[gohan] 31 name=Repository for cloudwan/gohan application. 32 baseurl=https://rpm.packager.io/gh/cloudwan/gohan/centos6/master 33 enabled=1" | sudo tee /etc/yum.repos.d/gohan.repo 34 sudo yum install gohan 35 ``` 36 37 ## Debian 7 Wheezy 64bits server 38 39 ``` 40 wget -qO - https://deb.packager.io/key | sudo apt-key add - 41 echo "deb https://deb.packager.io/gh/cloudwan/gohan wheezy master" | sudo tee /etc/apt/sources.list.d/gohan.list 42 sudo apt-get update 43 sudo apt-get install gohan 44 ``` 45 46 ## Heroku 47 48 [](https://heroku.com/deploy?template=https://github.com/cloudwan/gohan.git)