Premier commit

This commit is contained in:
Jérôme Delacotte
2025-11-15 16:21:32 +01:00
commit c1220580fe
2 changed files with 96 additions and 0 deletions

5
mysql-init/gitea.sql Normal file
View File

@@ -0,0 +1,5 @@
CREATE DATABASE IF NOT EXISTS gitea CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
CREATE USER IF NOT EXISTS 'gitea'@'%' IDENTIFIED BY 'gitea_pass';
GRANT ALL PRIVILEGES ON gitea.* TO 'gitea'@'%';
FLUSH PRIVILEGES;