39 lines
1.2 KiB
Bash
Executable File
39 lines
1.2 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
export LANGUAGE="en_US.UTF-8"
|
|
export LC_ALL="en_US.UTF-8"
|
|
|
|
akka_apps_status=$(systemctl is-active "bbb-apps-akka")
|
|
hasura_status=$(systemctl is-active "bbb-graphql-server")
|
|
|
|
if [ "$akka_apps_status" = "active" ]; then
|
|
echo "Stopping Akka-apps"
|
|
sudo systemctl stop bbb-apps-akka
|
|
fi
|
|
if [ "$hasura_status" = "active" ]; then
|
|
echo "Stopping Hasura"
|
|
sudo systemctl stop bbb-graphql-server
|
|
fi
|
|
|
|
echo "Restarting database bbb_graphql"
|
|
sudo -u postgres psql -c "SELECT pg_terminate_backend(pg_stat_activity.pid) FROM pg_stat_activity WHERE datname = 'bbb_graphql'"
|
|
sudo -u postgres psql -c "drop database if exists bbb_graphql"
|
|
sudo -u postgres psql -c "create database bbb_graphql"
|
|
sudo -u postgres psql -c "alter database bbb_graphql set timezone to 'UTC'"
|
|
|
|
echo "Creating tables in bbb_graphql"
|
|
sudo -u postgres psql -U postgres -d bbb_graphql -a -f bbb_schema.sql --set ON_ERROR_STOP=on
|
|
|
|
if [ "$hasura_status" = "active" ]; then
|
|
echo "Starting Hasura"
|
|
sudo systemctl start bbb-graphql-server
|
|
sleep 2
|
|
fi
|
|
if [ "$akka_apps_status" = "active" ]; then
|
|
echo "Starting Akka-apps"
|
|
sudo systemctl start bbb-apps-akka
|
|
fi
|
|
|
|
echo "Applying new metadata to Hasura"
|
|
/usr/local/bin/hasura/hasura metadata apply
|