Initial commit - PromptTech

This commit is contained in:
2026-01-27 18:07:00 -06:00
commit 3959a223bf
262 changed files with 128736 additions and 0 deletions

14
scripts/stop_pm2.sh Executable file
View File

@@ -0,0 +1,14 @@
#!/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 ""