Let’s walk through the journey of deploying a Rails application employing the power of Capistrano, a robust tool designed to automate tasks across one or more remote servers. Capistrano is a preferred choice to untangle complicated deployment procedures like updates, migrations, and asset compilation. Let’s assume that you already have a Rails app that you…
Continue ReadingTag: server
Enabling Gzip Compression in your rails apps
What is Gzip Compression? Gzip compression is a quick and easy way to speed up the loading times of your web application. This can be done by compressing the static assets like stylesheets, javascripts, etc before serving them to the web browser. This can save a lot of bandwidth and as well as make your…
Continue Reading