mirror of
https://github.com/go-gitea/gitea
synced 2024-11-18 11:29:29 +01:00
format the doc and add comments
This commit is contained in:
parent
d7956b3fb8
commit
649d0e1681
@ -1,12 +1,14 @@
|
|||||||
### Binary install gogs on ubuntu 14.04 LTS
|
### Binary install gogs on ubuntu 14.04 LTS
|
||||||
|
|
||||||
|
### create user and install denpendency
|
||||||
- sudo adduser git
|
- sudo adduser git
|
||||||
- sudo apt-get update
|
- sudo apt-get update
|
||||||
- sudo apt-get upgrade
|
- sudo apt-get upgrade
|
||||||
|
|
||||||
- sudo apt-get install git
|
- sudo apt-get install git
|
||||||
- sudo apt-get install golang
|
- sudo apt-get install golang
|
||||||
- sudo apt-get install mysql-server
|
- sudo apt-get install mysql-server
|
||||||
|
|
||||||
|
### create the 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;
|
||||||
@ -14,7 +16,7 @@
|
|||||||
- mysql> FLUSH PRIVILEGES;
|
- mysql> FLUSH PRIVILEGES;
|
||||||
- mysql> QUIT
|
- mysql> QUIT
|
||||||
|
|
||||||
|
### install the gogs
|
||||||
- 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
|
||||||
|
Loading…
Reference in New Issue
Block a user