BioNexus / client /startup.sh
gaialive's picture
Upload 2 files
c719f43 verified
raw
history blame contribute delete
184 Bytes
#!/bin/sh
# Start the Node.js server in the background
node index.js &
NODE_PID=$!
# Give the server a moment to start
sleep 3
# Start nginx in the foreground
nginx -g "daemon off;"