#Install gogs under ubuntu 14.04 LTS 32bit from source code
##Requirements
sudo adduser git
su git
sudo apt-get install git
sudo apt-get install mysql-server
$mysql -u root -p
mysql> SET GLOBAL storage_engine = 'InnoDB';
mysql> CREATE DATABASE gogs CHARACTER SET utf8 COLLATE utf8_bin;
mysql> GRANT ALL PRIVILEGES ON gogs.* TO 'root'@'localhost' IDENTIFIED BY 'pasword';
mysql> FLUSH PRIVILEGES;
mysql> QUIT
sudo apt-get install build-essential
sudo apt-get install mercurial
hg clone -r release https://go.googlecode.com/hg/ /home/git/golang/
echo export GOROOT=/home/git/golang >>.bashrc
echo export GOARCH=386 >>.bashrc
echo export GOOS=linux >>.bashrc
echo export GOBIN= /home/git/golang/bin >>.bashrc
echo export GOPATH=$HOME/app/Go >>.bashrc
echo PATH=${PATH}: /$HOME/golang/bin >>.bashrc
cd $GOROOT/src
./make.bash
$ go get -u github.com/gogits/gogs
$ cd $GOPATH/src/github.com/gogits/gogs
$ go build
$ ./start.sh