2014-04-23 14:00:05 +05:30
|
|
|
### Binary install gogs on ubuntu 14.04 LTS
|
2014-04-23 13:48:46 +05:30
|
|
|
|
2014-04-23 14:03:03 +05:30
|
|
|
### create user and install denpendency
|
2014-04-23 14:00:05 +05:30
|
|
|
- sudo adduser git
|
|
|
|
- sudo apt-get update
|
|
|
|
- sudo apt-get upgrade
|
|
|
|
- sudo apt-get install git
|
|
|
|
- sudo apt-get install mysql-server
|
2014-04-23 14:03:03 +05:30
|
|
|
|
|
|
|
### create the database
|
2014-04-23 14:00:05 +05:30
|
|
|
- $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
|
2014-04-23 13:48:46 +05:30
|
|
|
|
2014-04-23 14:03:03 +05:30
|
|
|
### install the gogs
|
2014-04-23 14:00:05 +05:30
|
|
|
- mkdir gogs
|
|
|
|
- cd gogs
|
2014-04-26 12:52:22 +05:30
|
|
|
- curl -L http://gobuild.io/github.com/gogits/gogs/v0.3.0/linux/amd64 -o v0.3.0.zip
|
|
|
|
- unzip v0.3.0.zip
|
2014-04-23 14:00:05 +05:30
|
|
|
- ./start.sh
|
2014-04-23 13:48:46 +05:30
|
|
|
|
|
|
|
> The up-to-date binary could be found at
|
|
|
|
> http://gobuild.io/download/github.com/gogits/gogs
|