mirror of
				https://github.com/go-gitea/gitea
				synced 2025-11-03 21:08:25 +00:00 
			
		
		
		
	format the doc
This commit is contained in:
		@@ -1,23 +1,25 @@
 | 
				
			|||||||
sudo adduser git
 | 
					### Binary install gogs on ubuntu 14.04 LTS
 | 
				
			||||||
sudo apt-get update
 | 
					 | 
				
			||||||
sudo apt-get upgrade
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
sudo apt-get install git
 | 
					- sudo adduser git
 | 
				
			||||||
sudo apt-get install golang
 | 
					- sudo apt-get update
 | 
				
			||||||
sudo apt-get install mysql-server
 | 
					- sudo apt-get upgrade
 | 
				
			||||||
$mysql -u root -p
 | 
					
 | 
				
			||||||
mysql> SET GLOBAL storage_engine = 'InnoDB';
 | 
					- sudo apt-get install git
 | 
				
			||||||
mysql> CREATE DATABASE gogs CHARACTER SET utf8 COLLATE utf8_bin;
 | 
					- sudo apt-get install golang
 | 
				
			||||||
mysql> GRANT ALL PRIVILEGES ON gogs.* TO 'root'@'localhost' IDENTIFIED BY 'password';
 | 
					- sudo apt-get install mysql-server
 | 
				
			||||||
mysql> FLUSH PRIVILEGES;
 | 
					- $mysql -u root -p
 | 
				
			||||||
mysql> QUIT
 | 
					- 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
 | 
					- mkdir gogs
 | 
				
			||||||
cd gogs
 | 
					- cd gogs
 | 
				
			||||||
curl -L http://gobuild.io/github.com/gogits/gogs/v0.2.0/linux/amd64 -o v0.2.0.zip
 | 
					- curl -L http://gobuild.io/github.com/gogits/gogs/v0.2.0/linux/amd64 -o v0.2.0.zip
 | 
				
			||||||
unzip v0.2.0.zip
 | 
					- unzip v0.2.0.zip
 | 
				
			||||||
./start.sh
 | 
					- ./start.sh
 | 
				
			||||||
 | 
					
 | 
				
			||||||
> The up-to-date binary could be found at
 | 
					> The up-to-date binary could be found at
 | 
				
			||||||
> http://gobuild.io/download/github.com/gogits/gogs
 | 
					> http://gobuild.io/download/github.com/gogits/gogs
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,48 +1,48 @@
 | 
				
			|||||||
#Install gogs under ubuntu 14.04 LTS 32bit from source code
 | 
					##Install gogs under ubuntu 14.04 LTS 32bit from source code
 | 
				
			||||||
 | 
					
 | 
				
			||||||
##Requirements
 | 
					###Requirements
 | 
				
			||||||
### Go Programming Language: Version >= 1.2
 | 
					- Go Programming Language: Version >= 1.2
 | 
				
			||||||
### git(bash): Version >= 1.6.6(both server and client) 
 | 
					- git(bash): Version >= 1.6.6(both server and client) 
 | 
				
			||||||
### MySQL: Version >= 5.1 or PostgreSQL or NOTHING. 
 | 
					- MySQL: Version >= 5.1 or PostgreSQL or NOTHING. 
 | 
				
			||||||
 | 
					
 | 
				
			||||||
## Create the user which will run git
 | 
					### Create the user which will run git
 | 
				
			||||||
sudo  adduser git
 | 
					- sudo  adduser git
 | 
				
			||||||
su git
 | 
					- su git
 | 
				
			||||||
 | 
					
 | 
				
			||||||
## Install git and Mysql-server
 | 
					### Install git and Mysql-server
 | 
				
			||||||
sudo apt-get install git
 | 
					- sudo apt-get install git
 | 
				
			||||||
sudo apt-get install mysql-server
 | 
					- sudo apt-get install mysql-server
 | 
				
			||||||
 | 
					
 | 
				
			||||||
## Create database
 | 
					### Create database
 | 
				
			||||||
$mysql -u root -p
 | 
					- $ mysql -u root -p
 | 
				
			||||||
mysql> SET GLOBAL storage_engine = 'InnoDB';
 | 
					- mysql> SET GLOBAL storage_engine = 'InnoDB';
 | 
				
			||||||
mysql> CREATE DATABASE gogs CHARACTER SET utf8 COLLATE utf8_bin;
 | 
					- mysql> CREATE DATABASE gogs CHARACTER SET utf8 COLLATE utf8_bin;
 | 
				
			||||||
mysql> GRANT ALL PRIVILEGES ON gogs.* TO 'root'@'localhost' IDENTIFIED BY 'pasword';
 | 
					- mysql> GRANT ALL PRIVILEGES ON gogs.* TO 'root'@'localhost' IDENTIFIED BY 'pasword';
 | 
				
			||||||
mysql> FLUSH PRIVILEGES;
 | 
					- mysql> FLUSH PRIVILEGES;
 | 
				
			||||||
mysql> QUIT
 | 
					- mysql> QUIT
 | 
				
			||||||
 | 
					
 | 
				
			||||||
## install go from source
 | 
					### install go from source
 | 
				
			||||||
sudo apt-get install build-essential 
 | 
					- sudo apt-get install build-essential 
 | 
				
			||||||
sudo apt-get install mercurial
 | 
					- sudo apt-get install mercurial
 | 
				
			||||||
hg clone -r release https://go.googlecode.com/hg/ /home/git/golang/
 | 
					- hg clone -r release https://go.googlecode.com/hg/ /home/git/golang/
 | 
				
			||||||
 
 | 
					 
 | 
				
			||||||
 | 
					
 | 
				
			||||||
echo export GOROOT=/home/git/golang >>.bashrc
 | 
					- echo export GOROOT=/home/git/golang >>.bashrc
 | 
				
			||||||
echo export GOARCH=386   >>.bashrc 
 | 
					- echo export GOARCH=386   >>.bashrc 
 | 
				
			||||||
echo export GOOS=linux  >>.bashrc 
 | 
					- echo export GOOS=linux  >>.bashrc 
 | 
				
			||||||
echo export GOBIN= /home/git/golang/bin  >>.bashrc 
 | 
					- echo export GOBIN= /home/git/golang/bin  >>.bashrc 
 | 
				
			||||||
echo export GOPATH=$HOME/app/Go   >>.bashrc 
 | 
					- echo export GOPATH=$HOME/app/Go   >>.bashrc 
 | 
				
			||||||
echo  PATH=${PATH}: /$HOME/golang/bin  >>.bashrc
 | 
					- echo  PATH=${PATH}: /$HOME/golang/bin  >>.bashrc
 | 
				
			||||||
cd $GOROOT/src
 | 
					- cd $GOROOT/src
 | 
				
			||||||
./make.bash
 | 
					- ./make.bash
 | 
				
			||||||
 | 
					
 | 
				
			||||||
## Download and install dependencies
 | 
					### Download and install dependencies
 | 
				
			||||||
$ go get -u github.com/gogits/gogs
 | 
					- $ go get -u github.com/gogits/gogs
 | 
				
			||||||
 | 
					
 | 
				
			||||||
## Build main program
 | 
					### Build main program
 | 
				
			||||||
$ cd $GOPATH/src/github.com/gogits/gogs
 | 
					- $ cd $GOPATH/src/github.com/gogits/gogs
 | 
				
			||||||
$ go build
 | 
					- $ go build
 | 
				
			||||||
$ ./start.sh
 | 
					- $ ./start.sh
 | 
				
			||||||
 | 
					
 | 
				
			||||||
## At present, you could access gogs from http://localhost:3000
 | 
					### At present, you could access gogs from http://localhost:3000
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user