mirror of
https://github.com/kou029w/quot.git
synced 2025-01-18 16:08:03 +00:00
8 lines
246 B
Bash
Executable file
8 lines
246 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
dbmate --wait up
|
|
export PGRST_DB_URI="${PGRST_DB_URI:-${DATABASE_URL}}"
|
|
export PGRST_DB_SCHEMA="${PGRST_DB_SCHEMA:-public}"
|
|
export PGRST_DB_ANON_ROLE="${PGRST_DB_ANON_ROLE:-guest}"
|
|
export PGRST_JWT_SECRET="${QUOT_JWK}"
|
|
exec "$@"
|