Deploy Rails app on Heroku
Use Postgres if possible
Heroku has built-in support for Postgres, so consider using Postgres if you have prior experience and it’s a viable option.
Update Gemfile.lock
Assuming you’re deploying your app on Linux, you need to run:
Prepare app for production
See this post.
Install Heroku CLI
Create a Heroku account and install the CLI and login. See docs.
Create a Heroku app
- Navigate to the dashboard.
- Click on
New > Create new app
.
Configure deployment method
1. GitHub deployment
(GitHub deployment doesn’t seem to be working at the moment)
- Go to
Deploy
>Deployment method
and set it to GitHub. - Connect to GitHub repo and choose deploy branch. I prefer having a
release
branch that is always deployed. - Enable automatic deploys from your release branch.
- Add Heroku remote:
heroku git:remote -a <app-name-on-heroku>
. Adding this remote will help you use theheroku
CLI without passing the-a
flag each time.
2. Heroku CLI deployment
- Go to
Deploy
>Deployment method
and set it to Heroku Git. - Add Heroku remote:
heroku git:remote -a <app-name-on-heroku>
Add master key
If you haven’t already done so, save your master key (config/master.key
) somewhere safe (e.g., LassPass vault).
Go to Settings > Config Vars > Reveal Config Vars
.
Add a new config var RAILS_MASTER_KEY
that’s the value of config/master.key
. See this post for more info.
Add environment variables
Add any environment variables that your application relies on.
Precompile assets
If you’re using the asset pipeline, you’ll want to precompile your assets:
Enable runtime metadata
Dyno metadata will give your dynos easy access to info about the app and the environment. This will help with integrating with tools like Sentry.
Perform a deploy
If you configured GitHub deployment, go to your app’s Deploy
page and perform a manual deploy.
If you configured Heroku CLI deployment, commit your changes and run:
Perform a migration
Schedule jobs
If you have any jobs that must run periodically, configure them using Heroku Scheduler.
Setup continuous integration
TODO
- Run RSpec tests before deployment is allowed.
Troubleshoot
View logs
Run interactive bash
Sources
Thanks for your comment . Once it's approved, it will appear here.
Leave a comment