mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2025-05-27 04:07:08 +00:00
format the doc
This commit is contained in:
parent
2a95bc1395
commit
d7956b3fb8
2 changed files with 56 additions and 54 deletions
|
@ -1,23 +1,25 @@
|
|||
sudo adduser git
|
||||
sudo apt-get update
|
||||
sudo apt-get upgrade
|
||||
### Binary install gogs on ubuntu 14.04 LTS
|
||||
|
||||
sudo apt-get install git
|
||||
sudo apt-get install golang
|
||||
sudo apt-get install mysql-server
|
||||
$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
|
||||
- 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
|
||||
- $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
|
||||
|
||||
|
||||
mkdir gogs
|
||||
cd gogs
|
||||
curl -L http://gobuild.io/github.com/gogits/gogs/v0.2.0/linux/amd64 -o v0.2.0.zip
|
||||
unzip v0.2.0.zip
|
||||
./start.sh
|
||||
- mkdir gogs
|
||||
- cd gogs
|
||||
- curl -L http://gobuild.io/github.com/gogits/gogs/v0.2.0/linux/amd64 -o v0.2.0.zip
|
||||
- unzip v0.2.0.zip
|
||||
- ./start.sh
|
||||
|
||||
> The up-to-date binary could be found at
|
||||
> http://gobuild.io/download/github.com/gogits/gogs
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue