Files
Termix/backend/entrypoint.sh
Luke Gustafson 80c45b7519 Commit
2024-11-27 03:40:00 +00:00

7 lines
137 B
Bash

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