Files
Termix/backend/entrypoint.sh
2024-12-04 21:04:46 -06:00

7 lines
124 B
Bash

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