From 43e98d15652ef635f4b13e0e00cda97035a6f05f Mon Sep 17 00:00:00 2001 From: Benjamin Toby Date: Mon, 13 Jan 2025 22:59:45 +0100 Subject: [PATCH] Updates --- dsql-app/docker-entrypoint.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dsql-app/docker-entrypoint.sh b/dsql-app/docker-entrypoint.sh index 2ee7201..1b540e7 100755 --- a/dsql-app/docker-entrypoint.sh +++ b/dsql-app/docker-entrypoint.sh @@ -32,15 +32,15 @@ if [ -n "${NEXT_PUBLIC_DSQL_LOCAL}" ]; then batchrun else echo "NEXT_PUBLIC_DSQL_LOCAL is set. Running Local initialization ..." - bun /app/docker-root-user-init.ts + # bun /app/docker-root-user-init.ts if [[ $? == 0 ]]; then echo "First User Setup Complete" else echo "First User Setup Failed!. Exiting ..." exit 1 fi - bun /app/package-shared/shell/mariadb-users/refreshUsersAndGrants.ts - bun run start:local + # bun /app/package-shared/shell/mariadb-users/refreshUsersAndGrants.ts + bun server.ts fi else echo "NEXT_PUBLIC_DSQL_LOCAL is not set."