« Gogs » : différence entre les versions

De Banane Atomic
Aller à la navigationAller à la recherche
Ligne 2 : Ligne 2 :
* [https://gogs.io/docs/installation Prerequisites]
* [https://gogs.io/docs/installation Prerequisites]
* [https://gogs.io/docs/installation/install_from_binary Download binary]
* [https://gogs.io/docs/installation/install_from_binary Download binary]
* Use the {{boxx|scripts/mysql.sql}} to create the database


<kode lang='mariadb'>
<kode lang='mariadb'>
-- use the scripts/mysql.sql script to create the database
create database gogs character set utf8mb4 collate utf8mb4_general_ci;
create database gogs character set utf8mb4 collate utf8mb4_general_ci;
create user gogs@localhost identified by 'PWD';
create user gogs@localhost identified by 'PWD';

Version du 15 octobre 2023 à 20:07

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