Install Gitea on Ubuntu 20.04
Go to file
Sarimoko e3ff2de2a2 Update 'README.md' 2021-07-19 05:09:29 +00:00
.gitignore Initial commit 2021-07-05 04:18:15 +00:00
LICENSE Initial commit 2021-07-05 04:18:15 +00:00
README.md Update 'README.md' 2021-07-19 05:09:29 +00:00
install.sh Update 'install.sh' 2021-07-19 05:00:09 +00:00

README.md

Gitea

Install Gitea on Ubuntu 20.04

mysql
CREATE USER 'gitea' IDENTIFIED BY 'secret';
CREATE DATABASE gitea CHARACTER SET 'utf8mb4' COLLATE 'utf8mb4_unicode_ci';
GRANT ALL PRIVILEGES ON gitea.* TO 'gitea';
FLUSH PRIVILEGES;
exit