Files
digifi-Deploy/core_composer/entrypoint2.sh
T
2025-09-30 06:46:42 -04:00

8 lines
145 B
Bash

#!/bin/sh
echo "Running DB migrations..."
flask db upgrade
echo "Starting Gunicorn server..."
exec gunicorn -w 4 -b 0.0.0.0:5000 wsgi:wsgi_app