Devops Tools

Installation of Ruby on Rails on Windows

Posted on

With this blog, we will learn Installation of Ruby on Rails (Rails) on Windows 10 in detailed and an easy step-by-step process. Pre-requisite: Ruby Ruby gems Git IDE (Notepad can also be used) Let’s start with installation of Ruby. Installation of Ruby on Windows Step 1. Check whether ruby is installed or not. C:\Users\user> ruby […]

Devops Tools

Deploy Java Application on Heroku

Posted on

In this blog, we will explore how to Deploy Java Application on Heroku. Please follow this link for the initial setup of Heroku Prerequisite Free Heroku Account. Click Here Git Java8 Maven3 Sample Java Application Clone the github repo git clone https://github.com/heroku/java-getting-started.git 2. Deploy app. You can specify the app name else it will take any random name […]

Devops Tools

Setting Up GitLab Runner on Windows

Posted on

In this blog, we will Setting Up GitLab Runner on Windows to run the builds on the same system or on the another systems. Gitlab Runner concept is just like a agent/slave configuration that we use in Jenkins/Bamboo. Introduction GitLab Runner is used to create a pipeline/job to trigger the builds. Types of Runners Shared […]

Devops Tools

Sample Project Ruby On Rails

Posted on

In this blog , we will create a sample project (create and read operation) of Ruby on Rails project. Introduction Ruby on Rails is a web development framework . Rails is used by companies as diverse as Airbnb, Basecamp, Disney, GitHub, Hulu, Kickstarter, Shopify, Twitter, and the Yellow Pages. What makes Rails so great? Firstly, Ruby […]

Devops Tools

Installation of Ruby on Rails on AWS EC2 Linux

Posted on

In this blog we will install all dependencies/ software which are required for the Installation of Ruby on Rails application. Installation of Ruby on Rails Install dependencies sudo yum install -y curl gpg gcc gcc-c++ make 2. Install RVM RVM supports most UNIX like systems and Windows (with Cygwin or Bash on Ubuntu on Windows). The basic requirements are bash, curl, gpg2and […]

Devops Tools

TeamCity-Sample Project

Posted on

This blog will help you to configure a TeamCity-Sample Project. Creating a project in TeamCity Clicking on the Create projectlink takes us to the Create New Project page where we can create our project by providing a suitable name and an optional description for it, as can be seen in the following screenshot: SUBPROJECTS TeamCity projects can themselves contain other […]

Devops Tools

TeamCity-Installation

Posted on

This blog will help you do the TeamCity-Installation on your windows machine Introduction TeamCity is a CI server from JetBrains and comes with a lot of features out of the box to get you started quickly with CI for your projects. As a CI server, TeamCity can detect changes in version-control repositories and trigger builds whenever new […]