2024-11-02 00:23:19 +05:30
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
|
|
# Start Xvfb in the background with the desired dimensions
|
2024-11-03 01:11:35 +05:30
|
|
|
#Xvfb :0 -screen 0 900x400x24 &
|
2024-11-02 00:23:19 +05:30
|
|
|
|
|
|
|
|
# Wait for Xvfb to start
|
2024-11-03 01:11:35 +05:30
|
|
|
#sleep 2
|
2024-11-02 00:23:19 +05:30
|
|
|
|
|
|
|
|
# Execute the Node.js application
|
|
|
|
|
exec npm run server
|