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: postgres
Deploying fails on heroku? here’s what you can do to fix
Use heroku logs Heroku logs often provide in-depth useful information for debugging your rails apps, it shows us the exact block of code where the bug exists, sometimes it can be because of a typo or a problem with gem versions or something else. We can also use heroku logs with –tail to continuously get…
Continue Reading