aboutsummaryrefslogtreecommitdiff
path: root/doc/install_gogs_from_binary_on_ubuntu.md
diff options
context:
space:
mode:
authorFuXiaoHei <fuxiaohei@hexiaz.com>2014-05-01 20:57:11 +0800
committerFuXiaoHei <fuxiaohei@hexiaz.com>2014-05-01 20:57:11 +0800
commitcc1eb5643e3d28b6e23d3642bdf93670c33fa9c5 (patch)
tree7adfbed18647baf9d3e281b7f23c0dcd0828cc7d /doc/install_gogs_from_binary_on_ubuntu.md
parent52fbb9788aa80adb56c96389f73c878cc0fe8b42 (diff)
parenta2333d95d594a6aa4e77e78c2efe32991d3cf1ef (diff)
Merge branch 'dev' of https://github.com/gogits/gogs into dev
Diffstat (limited to 'doc/install_gogs_from_binary_on_ubuntu.md')
-rw-r--r--doc/install_gogs_from_binary_on_ubuntu.md26
1 files changed, 0 insertions, 26 deletions
diff --git a/doc/install_gogs_from_binary_on_ubuntu.md b/doc/install_gogs_from_binary_on_ubuntu.md
deleted file mode 100644
index 3b406b36..00000000
--- a/doc/install_gogs_from_binary_on_ubuntu.md
+++ /dev/null
@@ -1,26 +0,0 @@
-### 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 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;
-- mysql> GRANT ALL PRIVILEGES ON gogs.* TO 'root'@'localhost' IDENTIFIED BY 'password';
-- mysql> FLUSH PRIVILEGES;
-- mysql> QUIT
-
-### install the gogs
-- mkdir gogs
-- cd gogs
-- curl -L http://gobuild.io/github.com/gogits/gogs/v0.3.0/linux/amd64 -o v0.3.0.zip
-- unzip v0.3.0.zip
-- ./start.sh
-
-> The up-to-date binary could be found at
-> http://gobuild.io/download/github.com/gogits/gogs