#!/bin/bash

# Navigate to the application directory
cd /home/ubuntu/app

# Install dependencies
npm install

# Start the Node.js application
npm run start

