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: database
Heroku Environment Variables
What Are Environment Variables ? Storing credentials like access keys, secret keys, SMTP passwords, etc in the source is never a good idea, especially in production; Because it may be vulnerable to hacks or you might want to share the source code with other developers. So, there are Environment Variables for that. We can use…
Continue Reading