File size: 265 Bytes
a4bef0b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
#!/bin/bash
set -e
# Start API server in background
cd /app/api
gunicorn --bind 0.0.0.0:5001 \
--workers 1 \
--worker-class gevent \
--timeout 200 \
--preload \
app:app &
# Start web server
cd /app/web
npm start
# Keep container running
wait |