#!/bin/bash
# cPanel Passenger Node.js startup script
# Place this in the root directory of your cPanel app

# Set Node.js version (cPanel default)
source /opt/remi/php72/enable

# Start the application
cd backend
npm install --production
node server.js
