From e6cccc4b26ccb38877cc702820331b58db061e4f Mon Sep 17 00:00:00 2001 From: harkon Date: Tue, 2 Dec 2025 15:33:59 +0200 Subject: [PATCH] fix: update production setup script output messages --- scripts/setup-prod.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/scripts/setup-prod.sh b/scripts/setup-prod.sh index b1ebb68..5217ecb 100755 --- a/scripts/setup-prod.sh +++ b/scripts/setup-prod.sh @@ -62,6 +62,7 @@ export DOMAIN="app.harkon.co.uk" export BOOTSTRAP_FILE="infra/base/authentik/bootstrap-prod.yaml" echo -e "${BLUE}🔧 Running Authentik Setup for Production...${NC}" +echo -e "${BLUE}🌍 Domain: ${DOMAIN}${NC}" # Run complete-authentik-setup (gets token) ./scripts/complete-authentik-setup.sh @@ -70,3 +71,8 @@ echo -e "${BLUE}🔧 Running Authentik Setup for Production...${NC}" ./scripts/setup-authentik.sh echo -e "${GREEN}🎉 Production setup complete!${NC}" +echo -e "${BLUE}🔗 Access URLs:${NC}" +echo -e " • Authentik Admin: ${BLUE}https://auth.${DOMAIN}${NC}" +echo -e " • API Gateway: ${BLUE}https://api.${DOMAIN}${NC}" +echo -e " • Grafana: ${BLUE}https://grafana.${DOMAIN}${NC}" +echo -e " • Review Portal: ${BLUE}https://review.${DOMAIN}${NC}"