#!/bin/bash # Stop TechZone applications managed by PM2 echo "🛑 Stopping TechZone applications..." pm2 stop techzone-backend techzone-frontend echo "" echo "Current PM2 status:" pm2 status echo "" echo "To completely remove from PM2:" echo " pm2 delete techzone-backend techzone-frontend" echo ""