Devops Tools

Gradle Installation

Posted on

This blog will help you how to do Gradle Installation on your windows machine. Installation Download gradle from here. Create a new directory C:\Gradle with File Explorer. Double-click the ZIP archive to expose the content. Drag the content folder gradle-4.9 to your newly created C:\Gradle folder. Finally, installation of gradle is completed successfully. Set Environment […]

Devops Tools

Python Output

Posted on

This blog will help you about Python Output, or what the user sees from your program.  In  our sample program, we used the print() function to output your program’s inputs. As you may have guessed by now, print() is the primary function used for displaying your output. You will also learn about newlines and separators, characters which act […]

Devops Tools

Installation of python

Posted on

This blog will  help  you how to download and Installation of python on your computer, run its built-in programming environment, and create your very first Python program. Download Python https://www.python.org Select the latest version and the operation system. I am installing it on Windows 10 (64 bit) Click the executable installer option. A .exe file […]

Devops Tools

Basics of Git & Github

Posted on

Git is a Distributed Version Control system to track collaborative work of developers on projects through a Distributed Graph Theory Tree model. What is Version Control System (VCS)? It is a software that helps developers to work simultaneously while maintaining complete history of their work, without overwriting each other’s work. For instance, if you have […]

Devops Tools

Working with Git & GitHub

Posted on

Installation &  incorporation of Git to your project On Windows: Step 1. Check if Git is already installed. Go to command prompt and type: git –version If not install then go to git-scm.com and download 64 bit .exe file for Windows 10. Step 2. Add your project to Git a). Go to command prompt and […]

Devops Tools

Maven installation and configuration — Windows

Posted on

Maven Maven is a project management & comprehension tool that provides a complete build lifecycle framework to assist developers. It is a build automation tool used primarily for Java projects, though can also be used to build and manage projects written in C#, Ruby, Scala, and other languages. Maven addresses two aspects of building software: first, it describes how software is built, and second, it describes its dependencies. […]

Devops Tools

Jenkins integration with Maven

Posted on

Maven  is a build automation tool used primarily for Java projects, though can also be used to build and manage projects written in C#, Ruby, Scala, and other languages. Jenkins integration with Maven through plugins aids to automate the complete build. Maven is a program that automates the creation of executable applications from source code. It incorporates compiling, linking and packaging the code […]

Devops Tools

What is Continuous Integration?

Posted on

Definition :  Continuous Integration (CI) is a software development practice that requires developers to integrate their code into a shared repository at regular intervals (usually each person integrates at least daily – leading to multiple integrations per day). Further, e52ach integration/ check-in is verified by an automated build (including test) to detect integration errors  as […]

Devops Tools

JenkinsPipeline for Terraform deployment

Posted on

This blog will help you to use the JenkinsPipeline for Terraform deployment Tools Used: Jenkins Github Terraform JenkinsPipeline for Terraform deployment pipeline { agent any stages { stage(‘checkout’) { steps { git url: ‘git@giturl’ } } stage(‘Set Terraform path’) { steps { script { def tfHome = tool name: ‘Terraform’ env.PATH = “${tfHome}:${env.PATH}” } sh […]