Skip to content

Commit 2947b92

Browse files
committed
Update azuredeploy.bicep
1 parent ae58d8b commit 2947b92

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Labs/deploy/azuredeploy.bicep

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,9 @@ param name string = uniqueString(resourceGroup().id)
3535
@allowed([
3636
'B1'
3737
'S1'
38+
'P0v3'
3839
])
39-
param appServiceSku string = 'B1'
40+
param appServiceSku string = 'P0v3' //'B1'
4041

4142
@description('Specifies the SKU for the Azure OpenAI resource. Defaults to **S0**')
4243
@allowed([
@@ -247,6 +248,7 @@ resource appServiceWeb 'Microsoft.Web/sites@2022-03-01' = {
247248
httpsOnly: true
248249
siteConfig: {
249250
linuxFxVersion: 'NODE|20-lts'
251+
appCommandLine: 'pm2 serve /home/site/wwwroot/dist --no-daemon --spa'
250252
}
251253
}
252254
}

0 commit comments

Comments
 (0)