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

16
restart-services.sh Executable file
View File

@@ -0,0 +1,16 @@
#!/bin/bash
# GNX-WEB Service Restart Script
# Colors for output
GREEN='\033[0;32m'
NC='\033[0m' # No Color
echo -e "${GREEN}Restarting GNX-WEB services...${NC}"
# Restart PM2 services
pm2 restart gnxsoft-backend 2>/dev/null || echo "Backend service not found"
pm2 restart gnxsoft-frontend 2>/dev/null || echo "Frontend service not found"
echo -e "${GREEN}Services restarted${NC}"