TeamCity integration with Sitecore CMS

Is there any ready-made functionality for integrating Sitecore CMS with TeamCity? I checked the list of available runners but I can't seem to find it.

My client has an ASP.NET project and is using Sitecore CMS for a website. I am trying to build a channel to automatically run a build at a specific time of the week and deploy to Sitecore. Any help is appreciated.

+3


source to share


1 answer


Deploying Sitecore is very similar to deploying any standard .NET web application, except for content.

I wrote a blog post about Automating Deployment with TeamCity and Team Development for Sitecore (TDS) . You can ignore the TDS specific information if you just want to press the code. However, if you plan to immediately deploy content items, TDS is useful for this.



There is also a post by Jason Burt that covers OctoDeploy with TeamCity and TDS for continuous deployment.

You might want to start by creating a standard .NET MSBuild step and then deploying the code assembly to your site. This will get you started, and then you can start debugging from there and choose which other tools will suit your needs.

+2


source







All Articles