dsql-admin/dsql-app/docker-entrypoint.sh
Benjamin Toby 748ff55092 Bug Fixes
2024-11-05 15:18:40 +01:00

51 lines
1.1 KiB
Bash
Executable File

#!/bin/bash
cd /app
npm install
./init-sql.sh
if [[ $? == 0 ]]; then
echo "Dsql Database config complete"
else
echo "Dsql Database configuration failed. Exiting ..."
exit 1
fi
node /app/shell/createDbFromSchema.js
if [[ $? == 0 ]]; then
echo "Dsql Schema Setup Complete"
else
echo "Dsql Schema Setup failed. Exiting ..."
exit 1
fi
if [ -n "${NEXT_PUBLIC_DSQL_LOCAL}" ]; then
if [[ "$DSQL_HOST_ENV" == *"dev_dev"* ]]; then
echo "NEXT_PUBLIC_DSQL_LOCAL is set in dev environment."
batchrun
else
echo "NEXT_PUBLIC_DSQL_LOCAL is set. Running Local initialization ..."
node /app/docker-root-user-init.js
if [[ $? == 0 ]]; then
echo "First User Setup Complete"
else
echo "First User Setup Failed!. Exiting ..."
exit 1
fi
node /app/shell/mariadb-users/refreshUsersAndGrants.js
npm run start:local
fi
else
echo "NEXT_PUBLIC_DSQL_LOCAL is not set."
if [ "${DSQL_HOST_ENV}" == "prod_prod" ]; then
echo "Main Production Environment"
nodecid
else
echo "Dev Environment"
batchrun
fi
fi