60 lines
1.4 KiB
Bash
Executable File
60 lines
1.4 KiB
Bash
Executable File
#!/bin/sh
|
|
# Runs the db migrations and starts the super node services
|
|
|
|
# Exit if the variable tests fail
|
|
set -e
|
|
set +x
|
|
|
|
# Check the database variables are set
|
|
# XXX set defaults, don't silently fail
|
|
#test $DATABASE_HOSTNAME
|
|
#test $DATABASE_NAME
|
|
#test $DATABASE_PORT
|
|
#test $DATABASE_USER
|
|
#test $DATABASE_PASSWORD
|
|
#test $IPFS_INIT
|
|
#test $IPFS_PATH
|
|
VDB_COMMAND=${VDB_COMMAND:-superNode}
|
|
set +e
|
|
|
|
# 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
|
|
rv=$?
|
|
|
|
if [ $rv != 0 ]; then
|
|
echo "Could not run migrations. Are the database details correct?"
|
|
exit 1
|
|
fi
|
|
|
|
|
|
echo "Beginning the vulcanizedb process"
|
|
VDB_CONFIG_FILE=${VDB_CONFIG_FILE:-config.toml}
|
|
DEFAULT_OPTIONS="--config=$VDB_CONFIG_FILE"
|
|
VDB_FULL_CL=${VDB_FULL_CL:-$VDB_COMMAND $DEFAULT_OPTIONS}
|
|
echo running: ./vulcanizedb $VDB_FULL_CL $@
|
|
|
|
case "$1" in
|
|
"/bin/sh" )
|
|
echo dropping to shell
|
|
exec /bin/sh
|
|
esac
|
|
|
|
vdb_args="$@"
|
|
# default is to use the config passed by the build arg
|
|
if [[ -z "$vdb_args" ]]; then
|
|
vdb_args="--config=config.toml"
|
|
fi
|
|
|
|
echo running: ./vulcanizedb $vdb_args
|
|
./vulcanizedb $vdb_args
|
|
rv=$?
|
|
|
|
if [ $rv != 0 ]; then
|
|
echo "VulcanizeDB startup failed"
|
|
exit 1
|
|
fi |