#!/bin/bash set -e echo "==========================================" echo "Building Everything Is Suitable API" echo "==========================================" mvn clean package -DskipTests echo "==========================================" echo "Build completed successfully!" echo "==========================================" echo "Building Docker images..." docker-compose build echo "==========================================" echo "Docker images built successfully!" echo "==========================================" echo "Starting services..." docker-compose up -d echo "==========================================" echo "Services started successfully!" echo "==========================================" echo "Gateway: http://localhost:8080" echo "Client App: http://localhost:8081" echo "Admin App: http://localhost:8082" echo "=========================================="