forked from DigiFi/digifi-BankToProductCore
8 lines
145 B
Bash
Executable File
8 lines
145 B
Bash
Executable File
#!/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
|