remove bff

This commit is contained in:
2022-10-03 22:08:25 +02:00
parent d88abefa9a
commit 8c51b68523
21 changed files with 105 additions and 138 deletions

View File

@@ -0,0 +1,8 @@
#!/bin/bash
set -e
psql -v ON_ERROR_STOP=1 --username "$POSTGRES_USER" --dbname "$POSTGRES_DB" <<-EOSQL
CREATE USER como WITH PASSWORD 'somenotverysecurepassword';
CREATE DATABASE como;
GRANT ALL PRIVILEGES ON DATABASE como TO como;
EOSQL