Update 'README.md'

This commit is contained in:
Sarimoko 2021-07-19 05:09:29 +00:00
parent 59019f4917
commit e3ff2de2a2
1 changed files with 10 additions and 1 deletions

View File

@ -1,3 +1,12 @@
# Gitea
Install Gitea on Ubuntu 20.04
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
```