24 lines
609 B
Bash
24 lines
609 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
config=/etc/postgrest.d/postgrest.conf
|
||
|
|
||
|
JWT_SECRET="$API_SECRET"
|
||
|
|
||
|
PGRST_DB_URI="postgres://authenticator:postgrest@postgres:5432/$POSTGRES_DB"
|
||
|
PGRST_ROLE="$API_ROLE"
|
||
|
PGRST_SCHEMA="$API_SCHEMA"
|
||
|
|
||
|
rm -fr "$config"
|
||
|
touch "$config"
|
||
|
{
|
||
|
printf 'db-uri = "%s"\n' "$PGRST_DB_URI";
|
||
|
printf 'db-anon-role = "%s"\n' "$PGRST_ROLE";
|
||
|
printf 'db-schemas = "%s"\n' "$PGRST_SCHEMA";
|
||
|
printf 'jwt-secret = "%s"\n' "$JWT_SECRET";
|
||
|
printf 'jwt-secret-is-base64 = false\n';
|
||
|
printf 'server-host = "*"\n';
|
||
|
printf 'server-port = 3000\n';
|
||
|
} >> $config
|
||
|
|
||
|
exec -a /usr/local/bin/postgrest /usr/local/bin/postgrest "$config"
|