mirror of
https://github.com/CompassConnections/Compass.git
synced 2025-12-30 01:18:56 -05:00
16 lines
229 B
Bash
Executable File
16 lines
229 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
cd "$(dirname "$0")"/..
|
|
|
|
source .env
|
|
|
|
export PGPASSWORD=$SUPABASE_DB_PASSWORD
|
|
|
|
psql \
|
|
-h db.ltzepxnhhnrnvovqblfr.supabase.co \
|
|
-p 5432 \
|
|
-d postgres \
|
|
-U postgres \
|
|
-f backend/supabase/migration.sql
|