web/docker-entrypoint.shblame
View source
0b4b5821#!/bin/sh
0b4b5822# Start the collab Socket.IO server in the background
0b4b5823node collab-socket.js &
0b4b5824SOCKET_PID=$!
0b4b5825trap "kill $SOCKET_PID" EXIT
0b4b5826
0b4b5827# Start Next.js as the foreground process
0b4b5828exec node server.js