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;
|
sudo useradd -r -s /sbin/nologin gogs
# -r system user without home folder
# -s /sbin/nologin do not allow the user to login
|
/etc/systemd/system/gogs.service |
cd gogs
./gogs web
# open http://servername:3000
|