diff options
author | laofo <laofo521@gmail.com> | 2014-04-23 16:33:03 +0800 |
---|---|---|
committer | laofo <laofo521@gmail.com> | 2014-04-23 16:33:03 +0800 |
commit | 649d0e1681001d1e100a646bd378e8d87dd73b21 (patch) | |
tree | 9797e76f016f1c460cae0fad42b4a4307613deeb /doc | |
parent | d7956b3fb8410e4dae3a6d99b021db267a7f5fbf (diff) |
format the doc and add comments
Diffstat (limited to 'doc')
-rw-r--r-- | doc/install_gogs_from_binary_on_ubuntu.md | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/doc/install_gogs_from_binary_on_ubuntu.md b/doc/install_gogs_from_binary_on_ubuntu.md index c2b237f5..8079fd1a 100644 --- a/doc/install_gogs_from_binary_on_ubuntu.md +++ b/doc/install_gogs_from_binary_on_ubuntu.md @@ -1,12 +1,14 @@ ### Binary install gogs on ubuntu 14.04 LTS +### create user and install denpendency - 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 + +### create the database - $mysql -u root -p - mysql> SET GLOBAL storage_engine = 'InnoDB'; - mysql> CREATE DATABASE gogs CHARACTER SET utf8 COLLATE utf8_bin; @@ -14,7 +16,7 @@ - mysql> FLUSH PRIVILEGES; - mysql> QUIT - +### install the gogs - mkdir gogs - cd gogs - curl -L http://gobuild.io/github.com/gogits/gogs/v0.2.0/linux/amd64 -o v0.2.0.zip |