From 8f5fe4ab2f58328452ec61e725be642ccbc42024 Mon Sep 17 00:00:00 2001 From: Brendon Heinst Date: Tue, 24 Feb 2026 15:55:13 +0100 Subject: [PATCH] Use exec for medusa start to capture all output --- start.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/start.sh b/start.sh index 125db88..8d5269e 100644 --- a/start.sh +++ b/start.sh @@ -2,4 +2,4 @@ echo "Running database migrations..." npx medusa db:migrate echo "Starting Medusa server..." -npx medusa start +exec npx medusa start 2>&1