DEV Community

Cover image for The most efficient way to deploy your code & the tools you should use. Stack Overflow share their approach.
Chris Bertrand
Chris Bertrand

Posted on

The most efficient way to deploy your code & the tools you should use. Stack Overflow share their approach.

It's a major part of coding, it's all good it working on your machine, your version of SQL, your local single IIS box, but how do you take the single web site and get it out to the general public, or out to your testers?

What's the most efficient way, what requires the least amount of headbanging to get to work. It's a question all developers have to face at some point. It's always best looking to others, rather than trying to re-invent the wheel and who better to take a look at than the behemoth that is Stack Overflow. It has millions of users a year and they've detailed fairly comprehensively their approach to deploying their code!

There is a lot of variety in the Automated Deployments right now I've been reading about the subject and here is a great blog post from Stack Overflow and how they go about this mammoth undertaking. They make a number of good points and give a very detailed explanation into their process.

Are you new to the ALM Lifecycle? Do you want to start Continuous Integration of your system, but don't really understand the concept or how it can benefit you and your product? Well there are multiple benefits to Automated Builds and Deploys, from my own experience I would say the most prominent reasons behind following such an approach to being:

Anyone can Deploy

The worst thing with a standard deployment structure, is that certain people do certain jobs. The infrastructure team will usually be tasked with deploying code across to all our environments. But what if they are away, or busy with other tasks? Should your deployments really be handled by real people? With Automated Builds and Deploys you remove this constraint from the process. You can deploy whenever you want, from wherever you are, and by whoever has the privileges to approve such a decision.

Less Errors, More Repeat-ability

It may take a little while to get it up and running, especially successfully, but once this hurdle has been overcome then Deploys will no longer contain human errors, and they can be run as many times as you want, whenever you want.

You may have made a little text change somewhere, and want it pushed out, it's a Saturday/Sunday. Continuous deployment doesn't care, press a button and watch the magic happen!

Developers and DevOps spend their time doing their job!

Developers and Infrastructure will spend more time together getting this process in place. It's integral the the current process is correctly defined and transformed into the automated process. This will require lots of trial and error, setting permissions, testing firewalls, creating re-runnable Powershell scripts and even ultimately automated sanity test scripts.

This will free up time to look into the crux of the release, how to keep adding to it, optimising it, making it faster, more efficient, and ultimately give time back to the people that have more important thing to do then copy files from server to server!

Release more often

In addition to this, as there is no overhead to releasing code once the automated process is complete, it also means you're in the the fortunate position that you can release code more often. Just made a change? Checked it into TFS or GitHub? An automated build kicks off behind the scenes and then release that version whenever you are ready, or schedule it in for any downtime planned that day? No longer do you need to wait for a resource and take them away from what they were doing. The benefits are HUGE!

So, what are you waiting for? Start looking into solutions now? My motto is always to start SMALL and SLOW! Don't tackle a massive legacy project from the get go. Have you got something smaller you could practice on? Maybe an internal application that gets released once in a while. How about creating an ALM Lifecycle solution for this? Then using what you have learnt, start working on your application and see how far you can get!

There are a number of other tools you could use for Automated builds & Deploys, these are probably the most popular right now, I've linked to each so click through and see which would benefit you the most.

To read the full article follow the link hereHow Stack Overflow do deployment 2016

Let us know what you think below the fold, if you've had any positive experience from any specific products or services. We're all here to learn, and as the saying goes, there is no point in re-inventing the wheel, if there is a good approach that fits your requirements, you should probably use that.

Top comments (1)

Collapse
 
chris_bertrand profile image
Chris Bertrand

What ways do you deploy your code? Are there any tips or tools that you use that could be useful to others? I look forward to hearing of the many wacky ways code is deployed to our users!