mirror of
https://github.com/kou029w/quot.git
synced 2025-01-19 00:18:09 +00:00
7 lines
207 B
Bash
Executable file
7 lines
207 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:-anon}"
|
|
exec "$@"
|