ubertuber-backend/run.sh

18 lines
625 B
Bash

#!/bin/bash
# Name of the screen session
SESSION_NAME="ubertuberFrontend"
# Command to run your Node.js script
NODE_COMMAND="while true; do node /home/sparky/ubertuber-backend/index.js; done"
# Check if the screen session already exists
if screen -list | grep -q "$SESSION_NAME"; then
echo "Session $SESSION_NAME already exists. Attaching..."
screen -r "$SESSION_NAME"
else
echo "Starting new screen session: $SESSION_NAME"
# Start a new screen session and run the Node.js script
screen -dmS "$SESSION_NAME" bash -c "$NODE_COMMAND; exec bash"
echo "Node.js script is running in the background."
fi