ipld-eth-db/scripts/startup_script.sh

21 lines
605 B
Bash
Raw Normal View History

#!/bin/sh
# Runs the db migrations
set +x
# Construct the connection string for postgres
VDB_PG_CONNECT=postgresql://$DATABASE_USER:$DATABASE_PASSWORD@$DATABASE_HOSTNAME:$DATABASE_PORT/$DATABASE_NAME?sslmode=disable
# Run the DB migrations
echo "Connecting with: $VDB_PG_CONNECT"
echo "Running database migrations"
./goose -dir migrations/vulcanizedb postgres "$VDB_PG_CONNECT" up
# If the db migrations ran without err
if [[ $? -eq 0 ]]; then
echo "Migration process ran successfully"
2022-05-27 13:23:48 +00:00
tail -f /dev/null
else
echo "Could not run migrations. Are the database details correct?"
exit 1
fi