#!/bin/sh # Start the MQTT Ingestion Service in the background echo "🚀 Starting MQTT Ingestion Service..." npm run mqtt:start & # # Start the Sensor Simulator in the background to provide live data for the demo # echo "🚀 Starting Sensor Simulator..." # npm run simulate & # Start the Next.js web application echo "🚀 Starting Next.js Web Server..." npx next start -H 0.0.0.0 -p 3000