Skip to main content

Posts

Implementing CI/CD pipeline on Azure

In this article, we will be using Azure Pipelines to create a CI/CD pipeline for a .NET project. The Azure CI/CD pipeline simplifies continuous integration and continuous delivery (CI/CD) in the application development process. You can start from the source stage with existing code on GitHub or on-premise containers. The Azure Repos can maintain a central repository, and the Azure pipelines maintain build and release pipelines for the given project. The Azure DevOps CI/CD process is a crucial process with all the required dev services. What is Azure DevOps? Azure DevOps is a collection of services given by Microsoft Azure. It provides development services for a team to support, plan, collaborate, build, and deploy applications. It provides integrated features in a browser or an IDE(Integrated Development Environment). Some of the services for developers are : ● Azure Repos ● Azure Pipelines ● Azure Boards ● Azure Test Plans ● Azure Artifacts These resources are quite useful, e...

Introduction to UiPath ReFramework

UiPath Robotic Process Automation is a global automation tool that assists businesses with Citrix automation, Windows desktop automation and many more.  In 2019, UiPath became the first vendor to combine process mining and RPA with the purchase of both ProcessGold and Stepshot. UiPath's Commercial RPA technology is used by over 2,750 enterprise customers and government agencies to successfully deploy software bots that execute monotonous tasks. Through its comprehensive software platform, businesses are increasing productivity and improving customer experience across front-office and back-office processes. Taking this into consideration, in this article, we’ll be shedding some light on UiPath’s ReFramework and everything there is to it. The Primary Purpose of Uipath ReFramework Uipath framework, also known as robotic enterprise framework, is a framework designed to assist developers in creating RPA procedures that are both quick and efficient. It is the UiPath Template, which has a...

Creating S3 Buckets using Terraform

In this blog post, we will learn to create S3 Buckets using Terraform - Infrastructure as Code. Table of Contents ● What is Terraform? ● What is S3? ● Installation of Terraform ● Installation of AWS CLI ● Configuring AWS CLI ● Create Working directory for Terraform ● Understanding Terraform files ● Creating Single S3 Bucket ● Creating multiple S3 Buckets PreRequisites ● Installation of Terraform ● Installation of AWS CLI ● IAM user with Programmatic access  What is Terraform? ● Terraform is a tool to create , delete and modify the resources. ● Supported clouds such as AWS, Azure and GCP , IBM cloud etc. What is S3? S3 stands for Simple Storage Service. Amazon S3 has a simple web services interface that you can use to store and retrieve any amount of data, at any time, from anywhere on the web.  Installing Terraform 1. Using binary package (.zip) 2. Compiling from source Install Terraform From the link provided above, Download the suitable packag...