This uses Chocolatey and Boxstarter to install a loadout for Sitecore/.NET development on a new computer. Click the link below to start a click-to-run that does all the things. It's that easy. Fork the gist and alter the link below to customize for your own usage!
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" encoding="utf-8" ?> | |
<control xmlns:def="Definition" xmlns="http://schemas.sitecore.net/Visual-Studio-Intellisense" xmlns:shell="http://www.sitecore.net/shell"> | |
<Gallery.Languages> | |
<Gallery> | |
<CodeBeside Type="MyNameSpace.GalleryLanguagesForm,MyNameSpace"/> | |
<Script> | |
window.onload = function() { | |
var activeLanguage = document.querySelector('.scMenuPanelItemSelected'); |
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
using Owin; | |
namespace Sitecore.SignalR.Pipelines.InitializeOwinMiddleware | |
{ | |
using Microsoft.AspNet.SignalR; | |
using Sitecore.Diagnostics; | |
using Sitecore.Owin.Pipelines.Initialize; | |
using Sitecore.SignalR.Configuration; |
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
Param( | |
$solrVersion = "6.6.2", | |
$installFolder = "c:\solr", | |
$solrPort = "8983", | |
$solrHost = "solr", | |
$solrSSL = $true, | |
$nssmVersion = "2.24", | |
$JREVersion = "1.8.0_151" | |
) |
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
Param( | |
$solrVersion = "6.6.2", | |
$installFolder = "d:\solr", | |
$solrPort = "8983", | |
$solrHost = "solr", | |
$solrSSL = $true, | |
$nssmVersion = "2.24", | |
$JREVersion = "1.8.0_151" | |
) |
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
#define parameters | |
$prefix = "xp062" | |
$SqlServer = "sql server" | |
$SqlAdminUser = "admin user name" | |
$SqlAdminPassword="admin user password" | |
$SolrVersionNumber ='6.6.2' | |
$KeyToolFilePath ='C:\Program Files (x86)\Java\jre1.8.0_121\bin\keytool.exe' | |
$SQLCommandBinFolderPath ='C:\Program Files (x86)\Java\jre1.8.0_121\bin\keytool.exe' |
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
<configuration xmlns:patch="http://www.sitecore.net/xmlconfig/"> | |
<sitecore> | |
<pipelines> | |
<initialize> | |
<processor type="MyExtensions.Pipelines.Demo.DemoCode, MyExtensions" /> | |
</initialize> | |
</pipelines> | |
</sitecore> | |
</configuration> |
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
namespace MyExtensions.Pipelines.Demo | |
{ | |
public class DemoCode | |
{ | |
public void Process(PipelineArgs args) | |
{ | |
Sitecore.Diagnostic.Log.Info("MyExtensions: Running DemoCode.Process method", this); | |
//do your magic | |
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
namespace Sitecore.Feature.Demo.Pipelines | |
{ | |
using System.Web.Mvc; | |
using System.Web.Routing; | |
using Sitecore.Pipelines; | |
public class RegisterWebApiRoutes | |
{ | |
public void Process(PipelineArgs args) | |
{ |
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" encoding="utf-8"?> | |
<configuration xmlns:patch="http://www.sitecore.net/xmlconfig/"> | |
<sitecore> | |
<pipelines> | |
<owin.initialize> | |
<processor type="MyExtensions.Pipelines.Demo.DemoCodeOWIN, MyExtensions" /> | |
</owin.initialize> | |
</pipelines> | |
</sitecore> |
OlderNewer