-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathSetup-Environment.ps1
61 lines (51 loc) · 2.11 KB
/
Setup-Environment.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
param
(
[Parameter(Mandatory = $true)]
[string]$DeploymentName,
[Parameter(Mandatory = $true)]
[string]$Location,
[switch]$IsLocal,
[switch]$SkipInfrastructure,
[switch]$WhatIf
)
Write-Host "Starting environment setup..."
if ($SkipInfrastructure) {
Write-Host "Skipping infrastructure deployment..."
$InfrastructureOutputs = Get-Content -Path './infra/InfrastructureOutputs.json' -Raw | ConvertFrom-Json
}
else {
Write-Host "Deploying infrastructure..."
$InfrastructureOutputs = (./infra/Deploy-Infrastructure.ps1 `
-DeploymentName $DeploymentName `
-Location $Location `
-WhatIf:$WhatIf)
if ($WhatIf) {
Write-Host "WhatIf mode is enabled. Exiting without deploying."
exit 0
}
}
if (-not $InfrastructureOutputs) {
Write-Error "Failed to deploy infrastructure."
exit 1
}
$AzureAIServicesEndpoint = $InfrastructureOutputs.environmentInfo.value.azureAIServicesEndpoint
$AzureOpenAIEndpoint = $InfrastructureOutputs.environmentInfo.value.azureOpenAIEndpoint
$AzureOpenAIChatDeployment = $InfrastructureOutputs.environmentInfo.value.azureOpenAIChatDeployment
$AzureStorageAccount = $InfrastructureOutputs.environmentInfo.value.azureStorageAccount
Write-Host "Updating ./src/AIDocumentPipeline/local.settings.json..."
$LocalSettingsPath = './src/AIDocumentPipeline/local.settings.json'
$LocalSettings = Get-Content -Path $LocalSettingsPath -Raw | ConvertFrom-Json
$LocalSettings.Values.AZURE_AISERVICES_ENDPOINT = $AzureAIServicesEndpoint
$LocalSettings.Values.AZURE_OPENAI_ENDPOINT = $AzureOpenAIEndpoint
$LocalSettings.Values.AZURE_OPENAI_CHAT_DEPLOYMENT = $AzureOpenAIChatDeployment
$LocalSettings.Values.AZURE_STORAGE_ACCOUNT = $AzureStorageAccount
$LocalSettings | ConvertTo-Json | Out-File -FilePath $LocalSettingsPath -Encoding utf8
if ($IsLocal) {
Write-Host "Starting local environment..."
docker-compose up
}
else {
Write-Host "Deploying AI Document Pipeline app to Azure..."
$AppOutputs = (./infra/apps/AIDocumentPipeline/Deploy-App.ps1 `
-InfrastructureOutputsPath './infra/InfrastructureOutputs.json')
}