From 64e33aa21a8a5b865ffba31c0b1d3c3a9292e59e Mon Sep 17 00:00:00 2001 From: Leonardo Custodio Date: Fri, 14 Feb 2025 11:26:59 -0300 Subject: [PATCH] changes --- start.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/start.sh b/start.sh index 2ee080bb..6fe2efb0 100644 --- a/start.sh +++ b/start.sh @@ -5,7 +5,7 @@ role=${CONTAINER_ROLE:-app} if [ "$role" = "processor" ]; then pnpm run db:migrate - pnpm run processor:start + pnpm run processor elif [ "$role" = "graphql" ]; then # pnpm run prom:start & # P1=$! @@ -14,7 +14,7 @@ elif [ "$role" = "graphql" ]; then # P2=$! # wait $P1 $P2 elif [ "$role" = "worker" ]; then - pnpm run worker:start + pnpm run worker else echo "Could not match the container role \"$role\"" exit 1