5 lines
135 B
Bash
5 lines
135 B
Bash
#!/bin/sh
|
|
# Start the backend server in the background
|
|
node /backend/server.js &
|
|
# Start Nginx in the foreground
|
|
nginx -g "daemon off;" |