@@ -45,33 +45,60 @@ hooks:
4545 postdeploy :
4646 windows :
4747 run : |
48- Write-Host "To upload Team Configurations to Cosmos. Run the following command in PowerShell:"
49- Write-Host "infra\scripts\Upload-Team-Config.ps1" -ForegroundColor Cyan
5048 Write-Host ""
51- Write-Host "To index Sample Data into Azure Search. Run the following command in PowerShell:"
52- Write-Host "infra\scripts\Process-Sample-Data.ps1" -ForegroundColor Cyan
49+ Write-Host "===============================================================" -ForegroundColor Yellow
50+ Write-Host " POST-DEPLOYMENT STEPS (PowerShell) " -ForegroundColor Green
51+ Write-Host "===============================================================" -ForegroundColor Yellow
5352 Write-Host ""
54- Write-Host "If you want to run both scripts as single command, you can use the following command in PowerShell:"
55- Write-Host "infra\scripts\Team-Config-And-Data.ps1" -ForegroundColor Cyan
53+
54+ Write-Host " STEP 1: Upload Team Configurations to Cosmos DB" -ForegroundColor White
55+ Write-Host " 👉 Run the following command in PowerShell:" -ForegroundColor White
56+ Write-Host " infra\scripts\Upload-Team-Config.ps1" -ForegroundColor Cyan
57+ Write-Host ""
58+
59+ Write-Host " STEP 2: Index Sample Data into Azure Search" -ForegroundColor White
60+ Write-Host " 👉 Run the following command in PowerShell:" -ForegroundColor White
61+ Write-Host " infra\scripts\Process-Sample-Data.ps1" -ForegroundColor Cyan
62+ Write-Host ""
63+
64+ Write-Host "💡 Alternatively, you can run above BOTH steps together using:" -ForegroundColor Yellow
65+ Write-Host " infra\scripts\Team-Config-And-Data.ps1" -ForegroundColor Cyan
66+ Write-Host ""
67+
68+ Write-Host "🌐 Access your deployed Frontend application at:" -ForegroundColor Green
69+ Write-Host " https://$env:webSiteDefaultHostname" -ForegroundColor Cyan
5670 Write-Host ""
57- Write-Host "You can access the deployed Frontend application at the following URL:"
58- Write-Host "https://$env:webSiteDefaultHostname" -ForegroundColor Cyan
5971 shell : pwsh
6072 interactive : true
6173 posix :
6274 run : |
6375 Blue='\033[0;34m'
76+ Green='\033[0;32m'
77+ Yellow='\033[1;33m'
6478 NC='\033[0m'
65- echo "To upload Team Configurations to Cosmos. Run the following command in Bash:"
66- echo "${Blue}bash infra/scripts/upload_team_config.sh"
79+
6780 echo ""
68- echo "${NC}To index Sample Data into Azure Search. Run the following command in Bash:"
69- echo "${Blue}bash infra/scripts/process_sample_data.sh"
81+ echo "${Yellow}==============================================================="
82+ echo "${Green} POST-DEPLOYMENT STEPS (Bash) "
83+ echo "${Yellow}===============================================================${NC}"
7084 echo ""
71- echo "${NC}If you want to run both scripts as single command, you can use the following command in Bash:"
72- echo "${Blue}bash infra/scripts/team_config_and_data.sh"
85+
86+ echo " STEP 1: Upload Team Configurations to Cosmos DB"
87+ echo " 👉 Run the following command in Bash:"
88+ echo " ${Blue}bash infra/scripts/upload_team_config.sh${NC}"
89+ echo ""
90+
91+ echo " STEP 2: Index Sample Data into Azure Search"
92+ echo " 👉 Run the following command in Bash:"
93+ echo " ${Blue}bash infra/scripts/process_sample_data.sh${NC}"
94+ echo ""
95+
96+ echo "💡 Alternatively, you can run above BOTH steps together using:"
97+ echo " ${Blue}bash infra/scripts/team_config_and_data.sh${NC}"
98+ echo ""
99+
100+ echo "🌐 Access your deployed Frontend application at:"
101+ echo " ${Blue}https://$webSiteDefaultHostname${NC}"
73102 echo ""
74- echo "${NC}You can access the deployed Frontend application at the following URL:"
75- echo "${Blue}https://$webSiteDefaultHostname"
76103 shell : sh
77104 interactive : true
0 commit comments