← Retour
#!/bin/bash
# ===========================================
# Test toutes les URLs des projets
# Usage: ./check-urls.sh
# ===========================================
set -e
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
source "$SCRIPT_DIR/../lib/config.sh"
source "$SCRIPT_DIR/../lib/colors.sh"
source "$SCRIPT_DIR/../lib/utils.sh"
print_header "Test des URLs"
# HelloCar
echo -e "${BOLD}HelloCar${NC}"
print_url_status "https://hellocar-api-prod.$DOMAIN_BASE"
print_url_status "https://hellocar-api-prod.$DOMAIN_BASE/swagger"
print_url_status "https://hellocar-public-prod.$DOMAIN_BASE"
print_url_status "https://hellocar-admin-prod.$DOMAIN_BASE"
echo ""
# Ajouter d'autres projets ici quand ils seront déployés
# echo -e "${BOLD}R7${NC}"
# print_url_status "https://r7-app-prod.$DOMAIN_BASE"
print_separator
log_info "Test terminé"