Files

15 lines
304 B
Bash
Raw Permalink Normal View History

2026-01-27 18:07:00 -06:00
#!/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 ""