File size: 234 Bytes
a324caa
 
7866d0d
a324caa
 
a80c2bd
a324caa
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/env bash
set -e
# Xvfb :99 -screen 0 1920x1080x24 & 

echo "Starting app (npm start) in background..."
npm start &

APP_PID=$!
echo "App PID: $APP_PID"

sleep 1

echo "Starting nginx (foreground)..."
nginx -g 'daemon off;'