Gogs
Apparence
Install on Ubuntu
-- use the scripts/mysql.sql script to create the database
create database gogs character set utf8mb4 collate utf8mb4_general_ci;
create user gogs@localhost identified by 'PWD';
grant all privileges on gogs.* to gogs@localhost;
flush privileges;
|
cd gogs
./gogs web
# open http://servername:3000
|