From 0587efb95cb52a53c1d308130d05baa9fd410bd0 Mon Sep 17 00:00:00 2001 From: VivianDee <115420678+VivianDee@users.noreply.github.com> Date: Thu, 17 Apr 2025 15:52:47 +0100 Subject: [PATCH] Update entrypoint.sh --- scripts/entrypoint.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/entrypoint.sh b/scripts/entrypoint.sh index 9066c97..9a12075 100755 --- a/scripts/entrypoint.sh +++ b/scripts/entrypoint.sh @@ -1,8 +1,8 @@ #!/bin/sh # echo "Running DB migrations..." -flask db migrate -m "Migration on $(date)" -flask db upgrade +# flask db migrate -m "Migration on $(date)" +# flask db upgrade echo "Starting Gunicorn server..." exec gunicorn -w 4 -b 0.0.0.0:5000 wsgi:wsgi_app