From 43125c920a25ca26de4425dd97d74940aba44a65 Mon Sep 17 00:00:00 2001 From: "CHIEFSOFT\\ameye" Date: Wed, 22 Oct 2025 12:21:12 -0400 Subject: [PATCH] core env --- engine/scripts/entrypoint.sh | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 engine/scripts/entrypoint.sh diff --git a/engine/scripts/entrypoint.sh b/engine/scripts/entrypoint.sh new file mode 100644 index 0000000..9a12075 --- /dev/null +++ b/engine/scripts/entrypoint.sh @@ -0,0 +1,8 @@ +#!/bin/sh + +# echo "Running DB migrations..." +# 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