Introduction If you are actively developing an application, using Docker can simplify your workflow and the process of deploying your application to production. Working with containers in development offers the following benefits: Environments are consistent, meaning that you can choose the languages and dependencies you want for your project without …
Read More »How To Add Sidekiq and Redis to a Ruby on Rails Application
Introduction When developing a Ruby on Rails application, you may find you have application tasks that should be performed asynchronously. Processing data, sending batch emails, or interacting with external APIs are all examples of work that can be done asynchronously with background jobs. Using background jobs can improve your application’s …
Read More »How To Add Bootstrap to a Ruby on Rails Application
Introduction If you are developing a Ruby on Rails application, you may be interested in adding styles to your project to facilitate user engagement. One way to do this is by adding Bootstrap, an HTML, CSS, and JavaScript framework designed to simplify the process of making web projects responsive and …
Read More »