Book Image

Continuous Integration, Delivery, and Deployment

By : Sander Rossel
Book Image

Continuous Integration, Delivery, and Deployment

By: Sander Rossel

Overview of this book

The challenge faced by many teams while implementing Continuous Deployment is that it requires the use of many tools and processes that all work together. Learning and implementing all these tools (correctly) takes a lot of time and effort, leading people to wonder whether it's really worth it. This book sets up a project to show you the different steps, processes, and tools in Continuous Deployment and the actual problems they solve. We start by introducing Continuous Integration (CI), deployment, and delivery as well as providing an overview of the tools used in CI. You'll then create a web app and see how Git can be used in a CI environment. Moving on, you'll explore unit testing using Jasmine and browser testing using Karma and Selenium for your app. You'll also find out how to automate tasks using Gulp and Jenkins. Next, you'll get acquainted with database integration for different platforms, such as MongoDB and PostgreSQL. Finally, you'll set up different Jenkins jobs to integrate with Node.js and C# projects, and Jenkins pipelines to make branching easier. By the end of the book, you'll have implemented Continuous Delivery and deployment from scratch.
Table of Contents (15 chapters)

Postman

I have already mentioned Postman in the introduction of this chapter. Postman comes in three flavors: free, Pro, and Enterprise. The free version already gives us more than we need for this project and it is really great for most projects, really. You may find a Postman Chrome plugin, but there is no need to bother with it. It is limited, and last I heard, they will deprecate it by the end of 2017. You can download Postman for the platform you are using on their website, https://www.getpostman.com/. Simply install Postman, nothing to worry about there, and start it. When you start Postman, you will see a loading screen with a text like Distorting space-time continuum or Moving satellites into position.

Be really careful here, or you will mess up reality as we know it for all of us! Just kidding; it is just a funny message and will not actually do anything. When Postman...