diff options
author | Lunny Xiao <xiaolunwen@gmail.com> | 2014-04-23 19:22:04 +0800 |
---|---|---|
committer | Lunny Xiao <xiaolunwen@gmail.com> | 2014-04-23 19:22:04 +0800 |
commit | 0c5e50a888ef3a48ff19390a0925820c718ac0de (patch) | |
tree | 8a5d00efc64b57cd197462dabde42f0a7aea72ec /doc/install_gogs_from_source_on_ubuntu.md | |
parent | 683e58878a3f1a36db29a252dd6ba0551210b1c1 (diff) | |
parent | 7ded30ba5ba5f3bc52b860f50ab82895734f449f (diff) |
Merge branch 'master' of github.com:gogits/gogs
Diffstat (limited to 'doc/install_gogs_from_source_on_ubuntu.md')
-rw-r--r-- | doc/install_gogs_from_source_on_ubuntu.md | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/doc/install_gogs_from_source_on_ubuntu.md b/doc/install_gogs_from_source_on_ubuntu.md new file mode 100644 index 00000000..b8ae6fc7 --- /dev/null +++ b/doc/install_gogs_from_source_on_ubuntu.md @@ -0,0 +1,48 @@ +##Install gogs under ubuntu 14.04 LTS 32bit from source code + +###Requirements +- Go Programming Language: Version >= 1.2 +- git(bash): Version >= 1.6.6(both server and client) +- MySQL: Version >= 5.1 or PostgreSQL or NOTHING. + +### Create the user which will run git +- sudo adduser git +- su git + +### Install git and Mysql-server +- sudo apt-get install git +- sudo apt-get install mysql-server + +### Create database +- $ 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 + +### install go from source +- 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 + +### Download and install dependencies +- $ go get -u github.com/gogits/gogs + +### Build main program +- $ cd $GOPATH/src/github.com/gogits/gogs +- $ go build +- $ ./start.sh + +### At present, you could access gogs from http://localhost:3000 + |