Files
Termix/backend/entrypoint.sh
Luke Gustafson 8e6923b7a0 Commit
2024-11-27 03:55:53 +00:00

7 lines
119 B
Bash

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