From a43e41c89b0610b42018e2c17893d61e22af30b0 Mon Sep 17 00:00:00 2001 From: Julien <120588494+julien4215@users.noreply.github.com> Date: Fri, 27 Sep 2024 12:35:42 +0200 Subject: [PATCH] add echo --- start.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/start.sh b/start.sh index 6ec24ddb3e..c9dfa61c17 100644 --- a/start.sh +++ b/start.sh @@ -1,5 +1,7 @@ #!/usr/bin/env bash set -e +echo "Running migrations..." python3 init.py +echo "Starting FastAPI server..." exec fastapi run app/main.py --workers ${NB_WORKERS:-1}