mirror of
https://github.com/CompassConnections/Compass.git
synced 2025-12-24 14:38:12 -05:00
16 lines
205 B
Bash
Executable File
16 lines
205 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
cd "$(dirname "$0")"/..
|
|
|
|
source .env
|
|
|
|
export PGPASSWORD=$SUPABASE_DB_PASSWORD
|
|
|
|
psql \
|
|
-h db.zbspxezubpzxmuxciurg.supabase.co \
|
|
-p 5432 \
|
|
-d postgres \
|
|
-U postgres \
|
|
-f "$1" \
|