Spaces:
Sleeping
Sleeping
File size: 394 Bytes
53c9876 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | #!/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
|