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:
Franck Cornu 2016-10-25 15:00:41 -04:00
parent fc0a38a1c5
commit f2819a0799
4 changed files with 5 additions and 3 deletions

View File

@ -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"

View File

@ -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"

View File

@ -1,2 +1 @@
nodeProcessCommandLine: "D:\Program Files (x86)\nodejs\4.6.0\node.exe"
debuggingEnabled: true

View File

@ -8,6 +8,9 @@
"scripts": {
"start": "node server"
},
"engines": {
"node": "6.9.0"
},
"license": "Apache",
"dependencies": {
"azure": "^1.2.0-preview",