- https://containers.doc.sitecore.com/docs/intro
- https://www.youtube.com/user/mastersitecore (check out docker and containers)
- https://sitecore.gallery.video/detail/videos/featured/video/6176364412001/sitecore-10---developer-tour?autoStart=true
- https://doc.sitecore.com/developers/100/developer-tools/en/walkthrough--using-the-getting-started-template.html
- https://www.slideshare.net/BartPlasmeijer/sitecore-loves-containers
This file contains hidden or 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
<# | |
.SYNOPSIS | |
Performs a Sitecore Creative Exchange Import from the files on disk | |
.DESCRIPTION | |
This script utilises the Sitecore Creative Exchange to import front end static assets into the media library. This gives the front end development team full flexibility to use the tools | |
they are needed to produce the final output. This is a Sitecore Powershell Extension script that should be stored where all the other Script Libraries are placed in Sitecore. |
This file contains hidden or 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
<# | |
.SYNOPSIS | |
This script runs the Front End Build, with an option to trigger Creative Exchange Import to the Web Site | |
.DESCRIPTION | |
This script runs the Front End Build, with an option to trigger Creative Exchange Import process to the specified SXA web site. This can be used on both developer PC's, mainly a back end developer as a back end developer do not neccessarily require the most up to date front end build assets at all times. | |
.PARAMETER SitecoreWebSiteCreativeExchangeFolderPath |
This file contains hidden or 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"?> | |
<configuration xmlns:patch="http://www.sitecore.net/xmlconfig/" xmlns:localenv="http://www.sitecore.net/xmlconfig/localenv/" xmlns:role="http://www.sitecore.net/xmlconfig/role/"> | |
<sitecore role:require="Standalone or ContentDelivery or ContentManagement"> | |
<settings localenv:require="LocalDeveloper"> | |
<!-- MVC: Flag for controlling whether Razor View Engine will look at physical view last modified dates | |
when determining to use a view file from a pre-compiled assembly or from the file system. | |
Default: "false" | |
--> | |
<setting name="Mvc.UsePhysicalViewsIfNewer" value="true" /> | |
</settings> |
This file contains hidden or 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
addEventListener('fetch', event => { | |
event.respondWith(handleRequest(event.request)) | |
}) | |
/** | |
* Fetch and log a request | |
* @param {Request} request | |
*/ | |
async function handleRequest(request) { | |
// Parse request URL to get access to query string |
This file contains hidden or 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
Set-ExecutionPolicy RemoteSigned -Force; Set-ExecutionPolicy Unrestricted -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1')) | |
choco install dotnetcore -y | |
choco install dotnetcore-sdk -y | |
choco install webdeploy -y | |
choco install dotnetfx -y | |
choco install netfx-4.8 -y | |
choco install powershell-core -y | |
choco install azure-cli -y | |
choco install git -y | |
choco install sourcetree -y |
- https://containers.doc.sitecore.com/docs/intro
- https://www.youtube.com/user/mastersitecore (check out docker and containers)
- https://sitecore.gallery.video/detail/videos/featured/video/6176364412001/sitecore-10---developer-tour?autoStart=true
- https://doc.sitecore.com/developers/100/developer-tools/en/walkthrough--using-the-getting-started-template.html
- https://www.slideshare.net/BartPlasmeijer/sitecore-loves-containers
This file contains hidden or 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
services: | |
traefik: | |
image: traefik:v${TRAEFIK_VERSION}-nanoserver-${NANOSERVER_VERSION} | |
build: | |
context: . | |
args: | |
NANOSERVER_VERSION: ${NANOSERVER_VERSION} | |
TRAEFIK_VERSION: '${TRAEFIK_VERSION}' | |
... |
This file contains hidden or 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
<# | |
.SYNOPSIS | |
Updates the Workflow and Workflow state fields of content items with the given $workflowID and $workflowStateID values. | |
.DESCRIPTION | |
This script can be used when existing content is not assigned to a workflow and workflow state while it should be. | |
This scenario usually occurs when a workflow is assigned to a template but there is already content created based on a previous version of that template (where the workflow was not yet assigned). |
This file contains hidden or 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
<# | |
.SYNOPSIS | |
Data Import Wizard provides a way to generate or update content from an external file. | |
.DESCRIPTION | |
The import file uses the properties "Name" and "Id" to help match existing items. | |
.NOTES | |
Requires Sitecore PowerShell Extensions 4.6 or newer. | |