2022-05-17 20:40:04 +02:00
|
|
|
-- Setup the PostgreSQL instance in the dev cluster.
|
|
|
|
-- TODO: automate the execution post-cluster start.
|
|
|
|
CREATE DATABASE invidious;
|
2022-05-17 21:04:56 +02:00
|
|
|
CREATE ROLE kemal LOGIN ENCRYPTED PASSWORD 'kemal';
|
2022-05-17 20:40:04 +02:00
|
|
|
GRANT ALL PRIVILEGES ON DATABASE invidious TO kemal;
|
|
|
|
CREATE DATABASE grafana;
|
|
|
|
CREATE DATABASE drone;
|
|
|
|
CREATE DATABASE gitea;
|