mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 20:01:09 +02:00
make auth working
This commit is contained in:
parent
7a1f1e9aef
commit
25824ed0ac
73 changed files with 9093 additions and 3877 deletions
9
docker/init-db/01-create-databases.sql
Normal file
9
docker/init-db/01-create-databases.sql
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
-- Create databases for all services
|
||||
-- This script runs on first container initialization
|
||||
|
||||
-- Create chat database
|
||||
CREATE DATABASE chat;
|
||||
|
||||
-- Grant all privileges to the default user
|
||||
GRANT ALL PRIVILEGES ON DATABASE chat TO manacore;
|
||||
GRANT ALL PRIVILEGES ON DATABASE manacore TO manacore;
|
||||
Loading…
Add table
Add a link
Reference in a new issue