rwadurian/backend/services/presence-service/deploy.sh

205 lines
5.9 KiB
Bash

#!/bin/bash
# =============================================================================
# Presence Service - Individual Deployment Script
# =============================================================================
set -e
SERVICE_NAME="presence-service"
CONTAINER_NAME="presence-service"
IMAGE_NAME="presence-service"
PORT=3001
# Colors
RED='\033[0;31m'
GREEN='\033[0;32m'
YELLOW='\033[1;33m'
BLUE='\033[0;34m'
NC='\033[0m'
log_info() { echo -e "${BLUE}[INFO]${NC} $1"; }
log_success() { echo -e "${GREEN}[OK]${NC} $1"; }
log_warn() { echo -e "${YELLOW}[WARN]${NC} $1"; }
log_error() { echo -e "${RED}[ERROR]${NC} $1"; }
# Get script directory
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
# Load environment
if [ -f "$SCRIPT_DIR/.env.production" ]; then
export $(cat "$SCRIPT_DIR/.env.production" | grep -v '^#' | xargs)
fi
case "$1" in
build)
log_info "Building $SERVICE_NAME..."
docker build -t "$IMAGE_NAME" "$SCRIPT_DIR"
log_success "$SERVICE_NAME built successfully"
;;
build-no-cache)
log_info "Building $SERVICE_NAME (no cache)..."
docker build --no-cache -t "$IMAGE_NAME" "$SCRIPT_DIR"
log_success "$SERVICE_NAME built successfully"
;;
start)
log_info "Starting $SERVICE_NAME..."
cd "$SCRIPT_DIR"
docker compose up -d
log_success "$SERVICE_NAME started"
;;
start-deps)
log_info "Starting dependencies only..."
cd "$SCRIPT_DIR"
docker compose -f docker-compose.dev.yml up -d
log_success "Dependencies started"
;;
stop)
log_info "Stopping $SERVICE_NAME..."
cd "$SCRIPT_DIR"
docker compose down
log_success "$SERVICE_NAME stopped"
;;
stop-deps)
log_info "Stopping dependencies..."
cd "$SCRIPT_DIR"
docker compose -f docker-compose.dev.yml down
log_success "Dependencies stopped"
;;
restart)
$0 stop
$0 start
;;
logs)
docker logs -f "$CONTAINER_NAME"
;;
logs-tail)
docker logs --tail 100 "$CONTAINER_NAME"
;;
status)
if docker ps --format '{{.Names}}' | grep -q "^${CONTAINER_NAME}$"; then
log_success "$SERVICE_NAME is running"
docker ps --filter "name=$CONTAINER_NAME" --format "table {{.Status}}\t{{.Ports}}"
else
log_warn "$SERVICE_NAME is not running"
fi
;;
health)
log_info "Checking health of $SERVICE_NAME..."
if curl -sf "http://localhost:$PORT/api/v1/health" > /dev/null 2>&1; then
HEALTH=$(curl -s "http://localhost:$PORT/api/v1/health")
log_success "$SERVICE_NAME is healthy"
echo "$HEALTH"
else
log_error "$SERVICE_NAME health check failed"
exit 1
fi
;;
migrate)
log_info "Running migrations for $SERVICE_NAME..."
docker exec "$CONTAINER_NAME" npx prisma migrate deploy
log_success "Migrations completed"
;;
migrate-dev)
log_info "Running dev migrations for $SERVICE_NAME..."
docker exec "$CONTAINER_NAME" npx prisma migrate dev
;;
db-push)
log_info "Pushing schema to database..."
docker exec "$CONTAINER_NAME" npx prisma db push
log_success "Schema pushed"
;;
prisma-studio)
log_info "Starting Prisma Studio..."
docker exec -it "$CONTAINER_NAME" npx prisma studio
;;
shell)
log_info "Opening shell in $SERVICE_NAME container..."
docker exec -it "$CONTAINER_NAME" sh
;;
test)
log_info "Running tests for $SERVICE_NAME..."
cd "$SCRIPT_DIR"
npm test
;;
test-unit)
log_info "Running unit tests..."
cd "$SCRIPT_DIR"
npm run test:unit
;;
test-integration)
log_info "Running integration tests..."
cd "$SCRIPT_DIR"
npm run test:integration
;;
test-e2e)
log_info "Running E2E tests..."
cd "$SCRIPT_DIR"
npm run test:e2e
;;
clean)
log_info "Cleaning up..."
cd "$SCRIPT_DIR"
docker compose down -v
docker rmi "$IMAGE_NAME" 2>/dev/null || true
log_success "Cleanup completed"
;;
*)
echo "Usage: $0 {command}"
echo ""
echo "Build Commands:"
echo " build - Build Docker image"
echo " build-no-cache - Build Docker image without cache"
echo ""
echo "Service Commands:"
echo " start - Start the full stack (service + dependencies)"
echo " start-deps - Start dependencies only (for local development)"
echo " stop - Stop all containers"
echo " stop-deps - Stop dependencies only"
echo " restart - Restart the service"
echo ""
echo "Monitoring Commands:"
echo " logs - Follow logs"
echo " logs-tail - Show last 100 log lines"
echo " status - Show service status"
echo " health - Check service health"
echo ""
echo "Database Commands:"
echo " migrate - Run database migrations (production)"
echo " migrate-dev - Run dev migrations"
echo " db-push - Push Prisma schema to database"
echo " prisma-studio - Open Prisma Studio"
echo ""
echo "Development Commands:"
echo " shell - Open shell in container"
echo " test - Run all tests"
echo " test-unit - Run unit tests only"
echo " test-integration - Run integration tests only"
echo " test-e2e - Run E2E tests only"
echo ""
echo "Maintenance Commands:"
echo " clean - Remove containers and images"
exit 1
;;
esac