Hi! 👋 You've found Sitecore Ignition. This repository is no longer being maintained as it is what we'll call "Ignition 1.0". Come check out the new stuff we're doing at https://github.com/sitecoreignition/Ignition.Foundation!
Ignition is an open source development accelerator designed by the team at Perficient and released to the Sitecore community as a quick-start tool for beginning Sitecore projects. It has two primary components: the Sitecore Information Architecture piece and the .NET MVC Solution. All along the way, the team has set things up so that we're using best practices for Sitecore development as well as good development practices and patterns. We embrace SOLID, and our code is designed to enable you, the consumer, to quickly extend, add onto, and test your own code.
Please note that Ignition is in beta and may still be a bit rough around the edges. We are diligently adding new features and polish to the project and we happily accept your thoughts, feature requests, and pull requests.
Note: Sitecore Ignition now ships preconfigured for Unicorn as its default serialization tool. You can easily include TDS or any other serialization method in your own implementation.
IMPORTANT!: Ignition uses the new Sitecore Nuget feed for sitecore binary references. Be sure to add https://sitecore.myget.org/F/sc-packages/api/v3/index.json to your Visual Studio Nuget sources.
-
Setup a new Sitecore install on your machine.
-
By default, Ignition uses
http:\\ignition.localhost
as the URL. Add this URL to your hosts file and add it to your site's IIS bindings. -
Clone the repository:
git clone https://github.com/sitecoreignition/SitecoreIgnition.git
. -
Add the following nuget package source to the Nuget Package Source listing:
https://sitecore.myget.org/F/sc-packages/api/v3/index.json
. This step is performed in VS 2015 by clicking Tools, Nuget Package Manager, Package Manager Settings. The DLLs this package references for Ignition are the following:Sitecore.ContentSearch.dll
Sitecore.ContentSearch.Linq.dll
Sitecore.Kernel.dll
Sitecore.Mvc.dll
Sitecore.Client.dll
Note: These DLLs can also be added to the
_lib
folder as an alternative. The references to these DLLs in each Ignition project in the solution would also need to be updated. -
Update App_Config/Include/Folder.config file in
Ignition.Root
project to set the dataFolder and solutionFolder variables to your local data/solution folder paths. -
Open the solution
Ignition.Unicorn.sln
. -
Create a publishing profile called
Ignition.Sc
in theIgnition.Sc
project. -
Create a publishing profile called
Ignition.Root
in theIgnition.Root
project. -
Create a publishing profile called
Ignition.Unicorn
in theIgnition.Unicorn
project. -
Publish
Ignition.Sc
, thenIgnition.Root
, thenIgnition.Unicorn
. -
Navigate to the Unicorn Control Panel and sync the two Ignition configurations.
-
Publish your site and have fun!
Ignition has been tested using Sitecore 8.0 Update-4 and above. Ignition probably works with any version of the Sitecore 7 and 8 .dlls but we have not confirmed.
Innermost library accessible to the entire solution that houses core functionality used in other layers.
Includes standard models used by the framework. This is where you'll add your own shared models.
Integration layer where Ignition interacts with Sitecore (e.g., pipeline events, commands, etc.) and external integrations.
Presentation layer. Add your Sitecore site here.
Demo Ignition site. Examples and reusable components.
Composition root for the solution. Where IoC container, Glass Mapper, and MVC are configured and initialized.
- Follow @ignition_sc on Twitter.
- Join the Ignition channel on the Sitecore Community Slack.
Code and documentation copyright 2016 Jon Upchurch and Perficient, Inc. released under the MIT license.