« Gogs » : différence entre les versions
De Banane Atomic
Aller à la navigationAller à la recherche
Ligne 3 : | Ligne 3 : | ||
* [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 | * Use the {{boxx|scripts/mysql.sql}} to create the database | ||
<kode lang='mariadb'> | |||
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; | |||
</kode> | |||
<kode lang='bash'> | <kode lang='bash'> |
Version du 15 octobre 2023 à 20:07
Install on Ubuntu
- Prerequisites
- Download binary
- Use the scripts/mysql.sql 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 |