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
# dotnet sitecore cloud deployment create --environment-id <environment-id> --upload | |
# dotnet sitecore cloud deployment create --environment-id <id> --no-start --no-watch --upload --working-dir <path> |
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
{ | |
"deployItems": { | |
"modules": [ | |
"Foundation.*", | |
"Feature.*", | |
"Project.*" | |
] | |
}, | |
"buildTargets": [ | |
"./src/CM/Platform.csproj", |
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
<?xml version="1.0" encoding="utf-8" ?> | |
<!-- | |
Purpose: This include file enables and configures the Search feature. | |
This feature contains a large set of search renderings that enable users to build complex search pages. | |
To disable this file, change its extension to ".disabled". | |
--> |
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
using Microsoft.Extensions.DependencyInjection; | |
using Sitecore.DependencyInjection; | |
using Sitecore.Pipelines; | |
using Sitecore.XA.Foundation.Multisite; | |
using Sitecore.XA.Foundation.SitecoreExtensions.Session; | |
using System.Linq; | |
using System.Web.Http; | |
using System.Web.Routing; | |
namespace Platform.Pipelines |
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
using System.Collections.Generic; | |
namespace Platform.Models | |
{ | |
public class ContentParameters | |
{ | |
public ProductParameters product { get; set; } | |
} | |
public class ContextParameters |