We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae58d8b commit 2947b92Copy full SHA for 2947b92
Labs/deploy/azuredeploy.bicep
@@ -35,8 +35,9 @@ param name string = uniqueString(resourceGroup().id)
35
@allowed([
36
'B1'
37
'S1'
38
+ 'P0v3'
39
])
-param appServiceSku string = 'B1'
40
+param appServiceSku string = 'P0v3' //'B1'
41
42
@description('Specifies the SKU for the Azure OpenAI resource. Defaults to **S0**')
43
@@ -247,6 +248,7 @@ resource appServiceWeb 'Microsoft.Web/sites@2022-03-01' = {
247
248
httpsOnly: true
249
siteConfig: {
250
linuxFxVersion: 'NODE|20-lts'
251
+ appCommandLine: 'pm2 serve /home/site/wwwroot/dist --no-daemon --spa'
252
}
253
254
0 commit comments