You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
5 lines
225 B
5 lines
225 B
-- Initialization script for Gitea database and user
|
|
CREATE USER gitea WITH PASSWORD 'gitea';
|
|
CREATE DATABASE gitea OWNER gitea;
|
|
GRANT ALL PRIVILEGES ON DATABASE gitea TO gitea;
|
|
ALTER ROLE gitea SET client_encoding TO 'utf8';
|