Ruby on Rails

Контейнеризация приложения Ruby on Rails для разработки с помощью Docker Compose — step-by-step Docker tutorial on Progressive Robot

Контейнеризация приложения Ruby on Rails для разработки с помощью Docker Compose

Если вы активно занимаетесь разработкой приложений, использование Docker может упростить ваш рабочий процесс и процесс развертывания вашего приложения в продакшен. Работа с контейнерами в процессе разработки предоставляет следующие преимущества: Среды…

Read more
How To Deploy a Rails App with azk — step-by-step Linux tutorial on Progressive Robot

How To Deploy a Rails App with azk

azk is an orchestration tool that can be used to deploy applications locally and on a server. This tutorial shows how to use azk with a simple Rails application, Stringer. This article is from [azk](http://www.azk.io/).

Read more
How To Install Ruby on Rails on CentOS 6 — step-by-step Linux tutorial on Progressive Robot

How To Install Ruby on Rails on CentOS 6

This tutorial explains how to install Ruby, how to install ruby gems with yum or from source, how to update ruby gems and the system, and how to install rails on Centos. Ruby on Rails is an application stack that provides web developers with a framework to quickly create a variety of web applications.

Read more
How To Install Ruby on Rails with rbenv on Ubuntu 22.04 — step-by-step Linux tutorial on Progressive Robot

How To Install Ruby on Rails with rbenv on Ubuntu 22.04

Ruby on Rails is one of the most popular application stacks for developers looking to create sites and web apps. Using rbenv will provide you with a solid environment for developing your Ruby on Rails applications as it will let you easily switch Ruby versions, keeping your entire team on the same version. In this tutorial, we will guide you through the Ruby and Rails installation processes with rbenv and gem.

Read more
Scaling Ruby on Rails: Setting Up A Dedicated PostgreSQL Server (Part 3) — step-by-step Linux tutorial on Progressive Robot

Scaling Ruby on Rails: Setting Up A Dedicated PostgreSQL Server (Part 3)

In this installation of our the cloud provider Scaling-Rails series, we are going to find out how to build a PostgreSQL server from scratch to use as the database persistence layer for Ruby-on-Rails web-applications. Continuing, we are going to see how to connect our Rails application servers with the database by making the necessary configuration changes.

Read more
Containerizing a Ruby on Rails Application for Development with Docker Compose — step-by-step Docker tutorial on Progressive Robot

Containerizing a Ruby on Rails Application for Development with Docker Compose

If you are actively developing an application, using Docker can simplify your workflow and the process of deploying your application to production. This tutorial will show you how to set up a development environment for a Ruby on Rails application using Docker. You will create multiple containers – for the application itself, the PostgreSQL database, Redis, and a Sidekiq service – with Docker Compose.

Read more
How To Deploy a Rails App with Git Hooks on Ubuntu 14.04 — step-by-step Linux tutorial on Progressive Robot

How To Deploy a Rails App with Git Hooks on Ubuntu 14.04

In this tutorial, we will show you how to use Git hooks to automate the deployment of the production environment of your Rails application to a remote Ubuntu 14.04 server. Using Git hooks will allow you to deploy your application by simply pushing your changes to a production server. This particular setup uses a simple “post-receive” Git hook, in addition to Puma as the application server, Nginx as a reverse proxy to Puma, and PostgreSQL as the database.

Read more
How To Install Ruby on Rails with RVM on Debian 8 — step-by-step Linux tutorial on Progressive Robot

How To Install Ruby on Rails with RVM on Debian 8

Ruby on Rails is one of the most popular application stacks for developers looking to create sites and web apps. The Ruby programming language, combined with the Rails development framework, makes app development simple. You can easily install…

Read more
CHAT