HydroSense / start.sh
dpv007's picture
Clean sample deploy
53c9876
#!/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