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!"
|
$GitPublishingUserPassword = "socketio123!"
|
||||||
$AzureSBNamespace = "ServiceBus" + [Guid]::NewGuid();
|
$AzureSBNamespace = "ServiceBus" + [Guid]::NewGuid();
|
||||||
$AzureWebAppName = "WebApp" + [Guid]::NewGuid()
|
$AzureWebAppName = "WebApp" + [Guid]::NewGuid()
|
||||||
$AppServicePlanName = "ServicePlan"
|
$AppServicePlanName = "ServicePlan" + [Guid]::NewGuid()
|
||||||
$TemplateFilePath = ".\azure-deploy.json"
|
$TemplateFilePath = ".\azure-deploy.json"
|
||||||
$AzureResourceGroupLocation = "East US2"
|
$AzureResourceGroupLocation = "East US2"
|
||||||
$AzureResourceGroupName = "SPFxSocketIODemo"
|
$AzureResourceGroupName = "SPFxSocketIODemo"
|
||||||
|
|
|
@ -96,7 +96,7 @@ Version|Date|Comments
|
||||||
$GitPublishingUserPassword = "socketio123!"
|
$GitPublishingUserPassword = "socketio123!"
|
||||||
$AzureSBNamespace = "ServiceBus" + [Guid]::NewGuid();
|
$AzureSBNamespace = "ServiceBus" + [Guid]::NewGuid();
|
||||||
$AzureWebAppName = "WebApp" + [Guid]::NewGuid()
|
$AzureWebAppName = "WebApp" + [Guid]::NewGuid()
|
||||||
$AppServicePlanName = "ServicePlan"
|
$AppServicePlanName = "ServicePlan" + [Guid]::NewGuid()
|
||||||
$TemplateFilePath = ".\azure-deploy.json"
|
$TemplateFilePath = ".\azure-deploy.json"
|
||||||
$AzureResourceGroupLocation = "East US2"
|
$AzureResourceGroupLocation = "East US2"
|
||||||
$AzureResourceGroupName = "SPFxSocketIODemo"
|
$AzureResourceGroupName = "SPFxSocketIODemo"
|
||||||
|
|
|
@ -1,2 +1 @@
|
||||||
nodeProcessCommandLine: "D:\Program Files (x86)\nodejs\4.6.0\node.exe"
|
|
||||||
debuggingEnabled: true
|
debuggingEnabled: true
|
|
@ -8,6 +8,9 @@
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"start": "node server"
|
"start": "node server"
|
||||||
},
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": "6.9.0"
|
||||||
|
},
|
||||||
"license": "Apache",
|
"license": "Apache",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"azure": "^1.2.0-preview",
|
"azure": "^1.2.0-preview",
|
||||||
|
|
Loading…
Reference in New Issue