ipld-eth-server/dockerfiles/super_node/startup_script.sh

65 lines
1.7 KiB
Bash
Raw Normal View History

2019-06-14 02:12:56 +00:00
#!/bin/sh
# Runs the db migrations and starts the super node services
# Exit if the variable tests fail
set -e
2020-03-08 16:49:50 +00:00
set +x
# Check the database variables are set
2020-03-08 16:49:50 +00:00
test $DATABASE_HOSTNAME
test $DATABASE_NAME
test $DATABASE_PORT
test $DATABASE_USER
test $DATABASE_PASSWORD
2020-01-27 20:13:54 +00:00
test $IPFS_INIT
2020-03-22 17:14:43 +00:00
test $IPFS_PATH
test $VDB_COMMAND
2019-06-14 02:12:56 +00:00
set +e
# Export our database variables so that the IPFS Postgres plugin can use them
2020-03-08 16:49:50 +00:00
export IPFS_PGHOST=$DATABASE_HOSTNAME
export IPFS_PGUSER=$DATABASE_USER
export IPFS_PGDATABASE=$DATABASE_NAME
export IPFS_PGPORT=$DATABASE_PORT
export IPFS_PGPASSWORD=$DATABASE_PASSWORD
2020-03-22 17:14:43 +00:00
# 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
# and IPFS_INIT is true
if [[ "$IPFS_INIT" = true ]] ; then
# initialize PG-IPFS
echo "Initializing Postgres-IPFS profile"
./ipfs init --profile=postgresds
else
echo "IPFS profile already initialized, skipping initialization"
fi
else
2020-03-22 17:14:43 +00:00
echo "Could not run migrations. Are the database details correct?"
exit 1
fi
2019-06-14 02:12:56 +00:00
# If IPFS initialization was successful
2020-01-27 20:13:54 +00:00
if [[ $? -eq 0 ]]; then
echo "Running the VulcanizeDB process"
./vulcanizedb ${VDB_COMMAND} --config=config.toml
2019-06-14 02:12:56 +00:00
else
2020-03-02 22:30:46 +00:00
echo "Could not initialize IPFS."
exit 1
2019-06-14 02:12:56 +00:00
fi
# If VulcanizeDB process was successful
2019-06-14 02:12:56 +00:00
if [ $? -eq 0 ]; then
echo "VulcanizeDB process ran successfully"
2019-06-14 02:12:56 +00:00
else
echo "Could not start VulcanizeDB process. Is the config file correct?"
exit 1
fi