Files
eamco_office_api/start.sh
2026-01-28 21:55:10 -05:00

12 lines
186 B
Bash

#!/bin/bash
set -e
# Run database migrations
flask db upgrade
# Start Gunicorn
gunicorn --bind 127.0.0.1:8000 --workers 4 --timeout 120 app:app &
# Start Nginx
nginx -g 'daemon off;'