« Gogs » : différence entre les versions

De Banane Atomic
Aller à la navigationAller à la recherche
Ligne 14 : Ligne 14 :
cd gogs
cd gogs
./gogs web
./gogs web
# open http://servername:3000
</kode>
</kode>

Version du 15 octobre 2023 à 20:08

Install on Ubuntu

Mariadb.svg
-- 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;
Bash.svg
cd gogs
./gogs web
# open http://servername:3000