Forced the Node JS engine version to 6.9.0 for the Azure Web App. There was an issue with the azure-intune package (requires > 5.0.0 version)
Added a Guid to the service plan resource.
This commit is contained in:
parent
fc0a38a1c5
commit
f2819a0799
|
@ -42,7 +42,7 @@ $GitPublishingUserName = "tempdeployuser" + [Guid]::NewGuid();
|
|||
$GitPublishingUserPassword = "socketio123!"
|
||||
$AzureSBNamespace = "ServiceBus" + [Guid]::NewGuid();
|
||||
$AzureWebAppName = "WebApp" + [Guid]::NewGuid()
|
||||
$AppServicePlanName = "ServicePlan"
|
||||
$AppServicePlanName = "ServicePlan" + [Guid]::NewGuid()
|
||||
$TemplateFilePath = ".\azure-deploy.json"
|
||||
$AzureResourceGroupLocation = "East US2"
|
||||
$AzureResourceGroupName = "SPFxSocketIODemo"
|
||||
|
|
|
@ -96,7 +96,7 @@ Version|Date|Comments
|
|||
$GitPublishingUserPassword = "socketio123!"
|
||||
$AzureSBNamespace = "ServiceBus" + [Guid]::NewGuid();
|
||||
$AzureWebAppName = "WebApp" + [Guid]::NewGuid()
|
||||
$AppServicePlanName = "ServicePlan"
|
||||
$AppServicePlanName = "ServicePlan" + [Guid]::NewGuid()
|
||||
$TemplateFilePath = ".\azure-deploy.json"
|
||||
$AzureResourceGroupLocation = "East US2"
|
||||
$AzureResourceGroupName = "SPFxSocketIODemo"
|
||||
|
|
|
@ -1,2 +1 @@
|
|||
nodeProcessCommandLine: "D:\Program Files (x86)\nodejs\4.6.0\node.exe"
|
||||
debuggingEnabled: true
|
|
@ -8,6 +8,9 @@
|
|||
"scripts": {
|
||||
"start": "node server"
|
||||
},
|
||||
"engines": {
|
||||
"node": "6.9.0"
|
||||
},
|
||||
"license": "Apache",
|
||||
"dependencies": {
|
||||
"azure": "^1.2.0-preview",
|
||||
|
|
Loading…
Reference in New Issue