This commit is contained in:
Iliyan Angelov
2025-12-10 01:36:00 +02:00
parent 2f6dca736a
commit 6a9e823402
84 changed files with 5293 additions and 1836 deletions

17
stop-services.sh Executable file
View File

@@ -0,0 +1,17 @@
#!/bin/bash
# GNX-WEB Service Stop Script
# Colors for output
GREEN='\033[0;32m'
YELLOW='\033[1;33m'
NC='\033[0m' # No Color
echo -e "${GREEN}Stopping GNX-WEB services...${NC}"
# Stop PM2 services
pm2 stop gnxsoft-backend 2>/dev/null || echo -e "${YELLOW}Backend service not running${NC}"
pm2 stop gnxsoft-frontend 2>/dev/null || echo -e "${YELLOW}Frontend service not running${NC}"
echo -e "${GREEN}Services stopped${NC}"