This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[CmdletBinding()] | |
param( | |
[string] $SitecoreInstanceName = "habitathome", | |
[string] $PublishingServiceZipPackage = ".\Sitecore Publishing Service 3.1.1 rev. 180807-x64.zip", | |
[string] $WebrootPath = "D:\Inetpub\wwwroot", | |
[string] $SqlServerName = ".", | |
[string] $SqlAdminAccount = "sa", | |
[string] $SqlAdminPassword = 'The-password-for-sa-account', | |
[switch] $UpdateSchemasOnly | |
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[CmdletBinding()] | |
param( | |
[string] $SitePrefix = "habitathome", | |
[string] $hostName = "localhost", | |
[string] $CertificateName = "localhost", | |
[string[]]$sites = @("CommerceAuthoring:5000", "CommerceMinions:5010", "CommerceOps:5015", "CommerceShops:5005", "SitecoreBizFx:4200", "SitecoreIdentityServer:5050") | |
) | |
$ErrorActionPreference = 'Stop' | |
Import-Module WebAdministration |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Param( | |
[string]$siteName = "DemoHome", | |
[string]$siteSuffix = $siteName.ToLower(), | |
[string]$siteHostName = "$($siteSuffix).dev.local", | |
[string]$engineHostName = "localhost", | |
[string]$identityServerHost = "$($engineHostName):5050", | |
[string]$DefaultEnvironment = "$($siteName)Authoring", | |
[string]$DefaultShopName = "Demo Home", | |
[string]$webRoot = "E:\Inetpub\wwwroot", | |
[string]$BizFxPathName = "SitecoreBizFx_$($siteSuffix)", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<configuration xmlns:patch="http://www.sitecore.net/xmlconfig/" xmlns:role="http://www.sitecore.net/xmlconfig/role/"> | |
<sitecore role:require="Standalone or ContentDelivery or ContentManagement"> | |
<commerceEngineConfiguration type="Sitecore.Commerce.Engine.Connect.CommerceEngineConfiguration, Sitecore.Commerce.Engine.Connect"> | |
<shopsServiceUrl patch:instead="shopsServiceUrl">https://localhost:5000/api/</shopsServiceUrl> | |
<commerceOpsServiceUrl patch:instead="commerceOpsServiceUrl">https://localhost:5000/commerceops/</commerceOpsServiceUrl> | |
<defaultEnvironment patch:instead="defaultEnvironment">DemoHomeAuthoring</defaultEnvironment> | |
<defaultShopName patch:instead="defaultShopName">Demo Home</defaultShopName> | |
</commerceEngineConfiguration> | |
</sitecore> | |
</configuration> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Param( | |
[string]$siteName = "DemoHome", | |
[string]$siteSuffix = $siteName.ToLower(), | |
[string]$siteHostName = "$($siteSuffix).dev.local", | |
[string]$engineSuffix = $siteName.ToLower(), | |
[string]$engineHostName = "localhost", | |
[string]$identityServerHost = "$($engineHostName):5050", | |
[switch]$Initialize, | |
[switch]$Bootstrap, | |
[switch]$SkipPublish, |