7 lines
99 B
Bash
7 lines
99 B
Bash
#!/bin/sh
|
|
# Start API server
|
|
cd /app/api && node server.js &
|
|
|
|
# Start NGINX
|
|
nginx -g "daemon off;"
|