diff --git a/server/start.sh b/server/start.sh new file mode 100644 index 00000000..3d02bdb0 --- /dev/null +++ b/server/start.sh @@ -0,0 +1,10 @@ +#!/bin/bash + +# Start Xvfb in the background with the desired dimensions +Xvfb :0 -screen 0 900x400x24 & + +# Wait for Xvfb to start +sleep 2 + +# Execute the Node.js application +exec npm run server \ No newline at end of file