summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorlaofo <laofo521@gmail.com>2014-04-23 16:30:05 +0800
committerlaofo <laofo521@gmail.com>2014-04-23 16:30:05 +0800
commitd7956b3fb8410e4dae3a6d99b021db267a7f5fbf (patch)
tree0faee490aa70ee685f5e215aa874abd05e3df1e7 /doc
parent2a95bc1395ec0cef34c969b048c4aacac90a42ea (diff)
downloadgitea-d7956b3fb8410e4dae3a6d99b021db267a7f5fbf.tar.gz
gitea-d7956b3fb8410e4dae3a6d99b021db267a7f5fbf.zip
format the doc
Diffstat (limited to 'doc')
-rw-r--r--doc/install_gogs_from_binary_on_ubuntu.md36
-rw-r--r--doc/install_gogs_from_source_on_ubuntu.md84
2 files changed, 61 insertions, 59 deletions
diff --git a/doc/install_gogs_from_binary_on_ubuntu.md b/doc/install_gogs_from_binary_on_ubuntu.md
index 857d8fdbf5..c2b237f54a 100644
--- a/doc/install_gogs_from_binary_on_ubuntu.md
+++ b/doc/install_gogs_from_binary_on_ubuntu.md
@@ -1,23 +1,25 @@
-sudo adduser git
-sudo apt-get update
-sudo apt-get upgrade
+### Binary install gogs on ubuntu 14.04 LTS
-sudo apt-get install git
-sudo apt-get install golang
-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 'password';
-mysql> FLUSH PRIVILEGES;
-mysql> QUIT
+- sudo adduser git
+- sudo apt-get update
+- sudo apt-get upgrade
+- sudo apt-get install git
+- sudo apt-get install golang
+- 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 'password';
+- mysql> FLUSH PRIVILEGES;
+- mysql> QUIT
-mkdir gogs
-cd gogs
-curl -L http://gobuild.io/github.com/gogits/gogs/v0.2.0/linux/amd64 -o v0.2.0.zip
-unzip v0.2.0.zip
-./start.sh
+
+- mkdir gogs
+- cd gogs
+- curl -L http://gobuild.io/github.com/gogits/gogs/v0.2.0/linux/amd64 -o v0.2.0.zip
+- unzip v0.2.0.zip
+- ./start.sh
> The up-to-date binary could be found at
> http://gobuild.io/download/github.com/gogits/gogs
diff --git a/doc/install_gogs_from_source_on_ubuntu.md b/doc/install_gogs_from_source_on_ubuntu.md
index 020c9f051b..b8ae6fc790 100644
--- a/doc/install_gogs_from_source_on_ubuntu.md
+++ b/doc/install_gogs_from_source_on_ubuntu.md
@@ -1,48 +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/
+##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
+- 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
+### 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
+### Build main program
+- $ cd $GOPATH/src/github.com/gogits/gogs
+- $ go build
+- $ ./start.sh
-## At present, you could access gogs from http://localhost:3000
+### At present, you could access gogs from http://localhost:3000