Created
December 21, 2022 15:47
-
-
Save jaykaycodes/5aabe109e0b56e7a19c3da018f043ce6 to your computer and use it in GitHub Desktop.
Clone Supabase DB for test/shadow
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# This script clones a supabase database without the data & owned by the current user | |
# Usage: clone_supabase_db.sh <new_db_name> [supabase_db_port] | |
# | |
# NOTE: [supabase_db_port] is optional and defaults to '54322' | |
# NOTE: You may seem some errors in the console. most of the time they are harmless for the purposes of running a test/shadow db. | |
# As long as you get a new DB with the same schema, you should be good to go. | |
# create a temp file to store the dump | |
TMP_DIR=$(mktemp -d) | |
if [ $? -ne 0 ]; then | |
echo "$0: Can't create temp dir. Is \"mktemp\" installed?" | |
exit 1 | |
fi | |
DUMP_FILE="${TMP_DIR}"/db.dump | |
# dump schema only from supabase's db | |
pg_dump -Fc --schema-only --no-acl postgresql://postgres:postgres@localhost:${2:-54322}/postgres > ${DUMP_FILE} | |
# (re)create the database | |
dropdb "$1" | |
createdb "$1" | |
# restore the schema | |
pg_restore --create --clean --if-exists --no-owner -d "$1" ${DUMP_FILE} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment