Skip to content

Instantly share code, notes, and snippets.

@schneems
Last active August 29, 2015 14:11
Show Gist options
  • Save schneems/a6faf56ced4294d9823b to your computer and use it in GitHub Desktop.
Save schneems/a6faf56ced4294d9823b to your computer and use it in GitHub Desktop.

Ruby on Rails is a popular web framework written in Ruby. This guide covers using Rails 4 on Heroku, running previous versions of Rails on Heroku see Getting Started with Rails 3.x on Heroku.

callout If you are already familiar with Heroku and Rails, reference the simplifed Rails 4 on Heroku guide instead. For general information on how to develop and architect apps for use on Heroku, see Architecting Applications for Heroku.

For this guide you will need:

  • Basic Ruby/Rails knowledge
  • Locally installed version of Ruby 2.0.0+, Rubygems, Bundler, and Rails 4+
  • Basic Git knowledge
  • A Heroku user account: Signup is free and instant

note If you have questions about Ruby on Heroku, consider discussing it in the Ruby on Heroku forums.

Local Workstation Setup

Install the Heroku Toolbelt on your local workstation. This ensures that you have access to the Heroku command-line client, Foreman, and the Git revision control system. You will also need Ruby and Rails installed.

Once installed, you'll have access to the $ heroku command from your command shell. Log in using the email address and password you used when creating your Heroku account:

callout Note that $ symbol before commands indicates they should be run on the command line, prompt, or terminal with appropriate permissions. Do not copy the $ symbol.

$ heroku login
Enter your Heroku credentials.
Email: schneems@example.com
Password:
Could not find an existing public key.
Would you like to generate one? [Yn]
Generating new SSH public key.
Uploading ssh public key /Users/adam/.ssh/id_rsa.pub

Press enter at the prompt to upload your existing ssh key or create a new one, used for pushing code later on.

Write your App

callout To run on Heroku your app must be configured to use the Postgres database, have all dependencies declared in your Gemfile, and have the rails_12factor gem in the production group of your Gemfile

You may be starting from an existing app, if so upgrade to Rails 4 before continuing. If not, a vanilla Rails 4 app will serve as a suitable sample app. To build a new app make sure that you're using the Rails 4.x using $ rails -v. You can get the new version of rails by running,

$ gem install rails --no-ri --no-rdoc
Successfully installed rails-4.2.0
1 gem installed

Then create a new app:

$ rails new myapp --database=postgresql

Then move into your application directory.

$ cd myapp

callout If you experience problems or get stuck with this tutorial, your questions may be answered in a later part of this document. Once you experience a problem try reading through the entire document and then going back to your issue. It can also be useful to review your previous steps to ensure they all executed correctly.

If already have an app that was created without specifying --database=postgresql you will need to add the pg gem to your Rails project. Edit your Gemfile and change this line:

gem 'sqlite3'

To this:

gem 'pg'

callout We highly recommend using PostgreSQL during development. Maintaining parity between your development and deployment environments prevents subtle bugs from being introduced because of differences between your environments. Install Postgres locally now if it is not allready on your system.

You can get more information on why this change is needed and how to configure your app to run postgres locally see why you cannot use Sqlite3 on Heroku.

In addition to using the pg gem, you'll also need to ensure the config/database.yml is using the postgresql adapter.

The development section of your config/database.yml file should look something like this:

$ cat config/database.yml
# PostgreSQL. Versions 8.2 and up are supported.
#
# Install the pg driver:
#   gem install pg
# On OS X with Homebrew:
#   gem install pg -- --with-pg-config=/usr/local/bin/pg_config
# On OS X with MacPorts:
#   gem install pg -- --with-pg-config=/opt/local/lib/postgresql84/bin/pg_config
# On Windows:
#   gem install pg
#       Choose the win32 build.
#       Install PostgreSQL and put its /bin directory on your path.
#
# Configure Using Gemfile
# gem 'pg'
#
default: &default
  adapter: postgresql
  encoding: unicode
  # For details on connection pooling, see rails configuration guide
  # http://guides.rubyonrails.org/configuring.html#database-pooling
  pool: 5

Be careful here, if you omit the sql at the end of postgresql in the adapter section your application will not work.

Now re-install your dependencies (to generate a new Gemfile.lock):

$ bundle install

Rails 4 no longer has a static index page in production. When you're using a new app, there will not be a root page in production, so we need to create one. We will first create a controller called welcome for our home page to live:

$ rails generate controller welcome

Next we'll add an index page.

In file app/views/welcome/index.html.erb write:

<h2>Hello World</h2>
<p>
  The time is now: <%= Time.now %>
</p>

Now we need to have Rails route to this action. We'll edit config/routes.rb to set the index page to our new method:

In file config/routes.rb, on line 2 add:

  root 'welcome#index'

You can verify that the page is there by running your server:

$ rails server

And visiting http://localhost:3000 in your browser. If you do not see the page, use the logs that are output to your server to debug.

Heroku gems

Heroku integration has previously relied on using the Rails plugin system, which has been removed from Rails 4. To enable features such as static asset serving and logging on Heroku please add rails_12factor gem to your Gemfile.

At the end of Gemfile add:

gem 'rails_12factor', group: :production

Then run:

$ bundle install

We talk more about Rails integration on our Ruby Support page.

Specify Ruby version in app

Rails 4 requires Ruby 1.9.3 or above. Heroku has a recent version of Ruby installed, however you can specify an exact version by using the ruby DSL in your Gemfile. For this guide we'll be using Ruby 2.

At the end of Gemfile add:

ruby "2.1.5"

You should also be running the same version of Ruby locally. You can verify by running $ ruby -v. You can get more information on specifying your Ruby version on Heroku here.

Store your App in Git

Heroku relies on git, a distributed source control managment tool, for deploying your project. If your project is not already in git first verify that git is on your system:

$ git --help
usage: git [--version] [--help] [-C <path>] [-c name=value]
           [--exec-path[=<path>]] [--html-path] [--man-path] [--info-path]
           [-p|--paginate|--no-pager] [--no-replace-objects] [--bare]
           [--git-dir=<path>] [--work-tree=<path>] [--namespace=<name>]
           <command> [<args>]

If you don't see any output or get command not found you will need to install it on your system, verify that the Heroku toolbelt is installed.

Once you've verified that git works, first make sure you are in your Rails app directory by running $ ls:

The output should look like this:

$ ls
Gemfile
Gemfile.lock
README.rdoc
Rakefile
app
bin
config
config.ru
db
lib
log
public
test
tmp
vendor

Now run these commands in your Rails app directory to initialize and commit your code to git:

$ git init
$ git add .
$ git commit -m "init"

You can verify everything was committed correctly by running:

$ git status
On branch master
nothing to commit, working directory clean

Now that your application is committed to git you can deploy to Heroku.

Deploy your application to Heroku

Make sure you are in the directory that contains your Rails app, then create an app on Heroku:

$ heroku create
Creating whispering-shore-3877... done, stack is cedar-14
https://whispering-shore-3877.herokuapp.com/ | https://git.heroku.com/whispering-shore-3877.git
Git remote heroku added

You can verify that the remote was added to your project by running

$ git config --list | grep heroku
remote.heroku.url=https://git.heroku.com/whispering-shore-3877.git
remote.heroku.fetch=+refs/heads/*:refs/remotes/heroku/*

If you see fatal: not in a git directory then you are likely not in the correct directory. Otherwise you may deploy your code. After you deploy your code, you will need to migrate your database, make sure it is properly scaled and use logs to debug any issues that come up.

Deploy your code:

$ git push heroku master
remote: Compressing source files... done.        
remote: Building source:        
remote: 
remote: -----> Ruby app detected        
remote: -----> Compiling Ruby/Rails        
remote: -----> Using Ruby version: ruby-2.1.5        
remote: -----> Installing dependencies using 1.6.3        
remote:        Running: bundle install --without development:test --path vendor/bundle --binstubs vendor/bundle/bin -j4 --deployment        
remote:        Fetching gem metadata from https://rubygems.org/..........        
remote:        Using json 1.8.1        
remote:        Installing minitest 5.5.0        
remote:        Installing rake 10.4.2        
remote:        Installing thread_safe 0.3.4        
remote:        Installing builder 3.2.2        
remote:        Installing mini_portile 0.6.1        
remote:        Installing erubis 2.7.0        
remote:        Installing rack 1.6.0        
remote:        Installing mime-types 2.4.3        
remote:        Installing arel 6.0.0        
remote:        Installing coffee-script-source 1.8.0        
remote:        Installing execjs 2.2.2        
remote:        Installing thor 0.19.1        
remote:        Installing hike 1.2.3        
remote:        Installing i18n 0.7.0        
remote:        Using bundler 1.6.3        
remote:        Installing tilt 1.4.1        
remote:        Installing rails_serve_static_assets 0.0.1        
remote:        Installing rails_stdout_logging 0.0.1        
remote:        Installing sass 3.4.9        
remote:        Installing rdoc 4.2.0        
remote:        Installing multi_json 1.10.1        
remote:        Installing tzinfo 1.2.2        
remote:        Installing rack-test 0.6.2        
remote:        Installing mail 2.6.3        
remote:        Installing coffee-script 2.3.0        
remote:        Installing uglifier 2.6.0        
remote:        Installing rails_12factor 0.0.2        
remote:        Installing sdoc 0.4.1        
remote:        Installing sprockets 2.12.3        
remote:        Installing activesupport 4.2.0        
remote:        Installing rails-deprecated_sanitizer 1.0.3        
remote:        Installing globalid 0.3.0        
remote:        Installing activemodel 4.2.0        
remote:        Installing jbuilder 2.2.6        
remote:        Installing activejob 4.2.0        
remote:        Installing activerecord 4.2.0        
remote:        Installing pg 0.17.1        
remote:        Installing nokogiri 1.6.5        
remote:        Installing rails-dom-testing 1.0.5        
remote:        Installing loofah 2.0.1        
remote:        Installing rails-html-sanitizer 1.0.1        
remote:        Installing actionview 4.2.0        
remote:        Installing actionpack 4.2.0        
remote:        Installing sprockets-rails 2.2.2        
remote:        Installing actionmailer 4.2.0        
remote:        Installing railties 4.2.0        
remote:        Installing coffee-rails 4.1.0        
remote:        Installing jquery-rails 4.0.2        
remote:        Installing sass-rails 5.0.0        
remote:        Installing turbolinks 2.5.3        
remote:        Installing rails 4.2.0        
remote:        Your bundle is complete!        
remote:        Gems in the groups development and test were not installed.        
remote:        It was installed into ./vendor/bundle        
remote:        Post-install message from rdoc:        
remote:        Depending on your version of ruby, you may need to install ruby rdoc/ri data:        
remote:        <= 1.8.6 : unsupported        
remote:        = 1.8.7 : gem install rdoc-data; rdoc-data --install        
remote:        = 1.9.1 : gem install rdoc-data; rdoc-data --install        
remote:        >= 1.9.2 : nothing to do! Yay!        
remote:        Bundle completed (48.29s)        
remote:        Cleaning up the bundler cache.        
remote: -----> Preparing app for Rails asset pipeline        
remote:        Running: rake assets:precompile        
remote:        DEPRECATION WARNING: The configuration option `config.serve_static_assets` has been renamed to `config.serve_static_files` to clarify its role (it merely enables serving everything in the `public` folder and is unrelated to the asset pipeline). The `serve_static_assets` alias will be removed in Rails 5.0. Please migrate your configuration files accordingly. (called from block in tsort_each at /tmp/build_95210bf19c6cecb3796a1161dbaa30d5/vendor/ruby-2.1.5/lib/ruby/2.1.0/tsort.rb:226)        
remote:        I, [2014-12-22T18:06:22.710718 #996]  INFO -- : Writing /tmp/build_95210bf19c6cecb3796a1161dbaa30d5/public/assets/application-e8ba15a50465161f1bacc8751a450302.js        
remote:        I, [2014-12-22T18:06:22.731704 #996]  INFO -- : Writing /tmp/build_95210bf19c6cecb3796a1161dbaa30d5/public/assets/application-7eadaa6a15e069d84c07540345524b0e.css        
remote:        Asset precompilation completed (6.91s)        
remote:        Cleaning assets        
remote:        Running: rake assets:clean        
remote:        DEPRECATION WARNING: The configuration option `config.serve_static_assets` has been renamed to `config.serve_static_files` to clarify its role (it merely enables serving everything in the `public` folder and is unrelated to the asset pipeline). The `serve_static_assets` alias will be removed in Rails 5.0. Please migrate your configuration files accordingly. (called from block in tsort_each at /tmp/build_95210bf19c6cecb3796a1161dbaa30d5/vendor/ruby-2.1.5/lib/ruby/2.1.0/tsort.rb:226)        
remote: 
remote: ###### WARNING:        
remote:        No Procfile detected, using the default web server (webrick)        
remote:        https://devcenter.heroku.com/articles/ruby-default-web-server        
remote: 
remote: -----> Discovering process types        
remote:        Procfile declares types -> (none)        
remote:        Default types for Ruby  -> console, rake, web, worker        
remote: 
remote: -----> Compressing... done, 28.6MB        
remote: -----> Launching... done, v6        
remote:        https://whispering-shore-3877.herokuapp.com/ deployed to Heroku        
remote: 
remote: Verifying deploy... done.        
To https://git.heroku.com/whispering-shore-3877.git
 * [new branch]      master -> master

It is always a good idea to check to see if there are any warnings or errors in the output. If everything went well you can migrate your database.

Migrate your database

If you are using the database in your application you need to manually migrate the database by running:

$ heroku run rake db:migrate

Any commands after the heroku run will be executed on a Heroku dyno. You can obtain an interactive shell session by running $ heroku run bash.

Visit your application

You've deployed your code to Heroku. You can now instruct Heroku to execute a process type. Heroku does this by running the associated command in a dyno - a lightweight container which is the basic unit of composition on Heroku.

Let's ensure we have one dyno running the web process type:

$ heroku ps:scale web=1

You can check the state of the app's dynos. The heroku ps command lists the running dynos of your application:

$ heroku ps
=== web (1X): `bin/rails server -p $PORT -e $RAILS_ENV`
web.1: starting 2014/12/22 13:06:34 (~ 1m ago)

Here, one dyno is running.

We can now visit the app in our browser with heroku open.

$ heroku open
Opening whispering-shore-3877... done

You should now see the "Hello World" text we inserted above.

Heroku gives you a default web url for simplicty while you are developing. When you are ready to scale up and use Heroku for production you can add your own Custom Domain.

View the logs

If you run into any problems getting your app to perform properly, you will need to check the logs.

You can view information about your running app using one of the logging commands, heroku logs:

$ heroku logs
2014-12-22T18:05:14.623822+00:00 heroku[api]: Release v2 created by developer@example.com
2014-12-22T18:05:14.623793+00:00 heroku[api]: Enable Logplex by developer@example.com
2014-12-22T18:06:33.118850+00:00 heroku[api]: Set LANG, RAILS_ENV, RACK_ENV, SECRET_KEY_BASE config vars by developer@example.com
2014-12-22T18:06:33.118850+00:00 heroku[api]: Release v3 created by developer@example.com
2014-12-22T18:06:33.818169+00:00 heroku[api]: Attach HEROKU_POSTGRESQL_CRIMSON resource by developer@example.com
2014-12-22T18:06:33.818169+00:00 heroku[api]: Release v4 created by developer@example.com
2014-12-22T18:06:33.938420+00:00 heroku[api]: Attach DATABASE resource by developer@example.com
2014-12-22T18:06:33.938491+00:00 heroku[api]: Release v5 created by developer@example.com
2014-12-22T18:06:34.428247+00:00 heroku[api]: Scale to web=1 by developer@example.com
2014-12-22T18:06:34.551235+00:00 heroku[api]: Deploy 56dde46 by developer@example.com
2014-12-22T18:06:34.551235+00:00 heroku[api]: Release v6 created by developer@example.com
2014-12-22T18:06:35.996350+00:00 heroku[api]: Scale to web=1 by developer@example.com
2014-12-22T18:06:37.717206+00:00 heroku[web.1]: Starting process with command `bin/rails server -p 24113 -e production`

You can also get the full stream of logs by running the logs command with the --tail flag option like this:

$ heroku logs --tail

Dyno sleeping and scaling

Having only a single web dyno running will result in the dyno going to sleep after one hour of inactivity. This causes a delay of a few seconds for the first request upon waking. Subsequent requests will perform normally.

To avoid this, you can scale to more than one web dyno. For example:

$ heroku ps:scale web=2

For each application, Heroku provides 750 free dyno-hours. Running your app at 2 dynos would exceed this free, monthly allowance, so let's scale back:

$ heroku ps:scale web=1

Console

Heroku allows you to run commands in a one-off dyno - scripts and applications that only need to be executed when needed - using the heroku run command. Use this to launch a Rails console process attached to your local terminal for experimenting in your app's environment:

$ heroku run rails console
irb(main):001:0> puts 1+1
2

Rake

Rake can be run as an attached process exactly like the console:

$ heroku run rake db:migrate

Webserver

By default, your app's web process runs rails server, which uses Webrick. This is fine for testing, but for production apps you'll want to switch to a more robust webserver. On Cedar, we recommend Unicorn as the webserver. Regardless of the webserver you choose, production apps should always specify the webserver explicitly in the Procfile.

First, add Unicorn to your application Gemfile:

At the end of Gemfile add:

gem 'unicorn'

Then run

$ bundle install

Now you are ready to configure your app to use Unicorn.

Create a configuration file for Unicorn at config/unicorn.rb:

$ touch config/unicorn.rb

Now we're going to add Unicorn specific configuration options, that we explain in detail in Heroku's Unicorn documentation:

In file config/unicorn.rb write:

worker_processes Integer(ENV["WEB_CONCURRENCY"] || 3)
timeout 15
preload_app true

before_fork do |server, worker|
  Signal.trap 'TERM' do
    puts 'Unicorn master intercepting TERM and sending myself QUIT instead'
    Process.kill 'QUIT', Process.pid
  end

  defined?(ActiveRecord::Base) and
    ActiveRecord::Base.connection.disconnect!
end

after_fork do |server, worker|
  Signal.trap 'TERM' do
    puts 'Unicorn worker intercepting TERM and doing nothing. Wait for master to send QUIT'
  end

  defined?(ActiveRecord::Base) and
    ActiveRecord::Base.establish_connection
end

This default configuration assumes a standard Rails app with Active Record. You should get acquainted with the different options in the official Unicorn documentation.

Finally you will need to tell Heroku how to run your Rails app by creating a Procfile in the root of your application directory.

Procfile

Change the command used to launch your web process by creating a file called Procfile and entering this:

In file Procfile write:

web: bundle exec unicorn -p $PORT -c ./config/unicorn.rb

Note: The case of Procfile matters, the first letter must be uppercase.

Set the RACK_ENV to development in your environment and a PORT to connect to. Before pushing to Heroku you'll want to test with the RACK_ENV set to production since this is the enviroment your Heroku app will run in.

$ echo "RACK_ENV=development" >>.env
$ echo "PORT=3000" >> .env

You'll also want to add .env to your .gitignore since this is for local enviroment setup.

$ echo ".env" >> .gitignore
$ git add .gitignore
$ git commit -m "add .env to .gitignore"

Test your Procfile locally using Foreman:

$ gem install foreman

You can now start your web server by running

$ foreman start
18:24:56 web.1  | I, [2013-03-13T18:24:56.885046 #18793]  INFO -- : listening on addr=0.0.0.0:5000 fd=7
18:24:56 web.1  | I, [2013-03-13T18:24:56.885140 #18793]  INFO -- : worker=0 spawning...
18:24:56 web.1  | I, [2013-03-13T18:24:56.885680 #18793]  INFO -- : master process ready
18:24:56 web.1  | I, [2013-03-13T18:24:56.886145 #18795]  INFO -- : worker=0 spawned pid=18795
18:24:56 web.1  | I, [2013-03-13T18:24:56.886272 #18795]  INFO -- : Refreshing Gem list
18:24:57 web.1  | I, [2013-03-13T18:24:57.647574 #18795]  INFO -- : worker=0 ready

Looks good, so press Ctrl-C to exit and you can deploy your changes to Heroku:

$ git add .
$ git commit -m "use unicorn via procfile"
$ git push heroku master

Check ps, you'll see the web process uses your new command specifying Unicorn as the web server

$ heroku ps
=== web (1X): `bundle exec unicorn -p $PORT -c ./config/unicorn.rb`
web.1: starting 2014/12/22 13:08:04 (~ 1m ago)

The logs also reflect that we are now using Unicorn:

$ heroku logs

Rails Asset Pipeline

There are several options for invoking the Rails asset pipeline when deploying to Heroku. For general information on the asset pipeline please see the Rails 3.1+ Asset Pipeline on Heroku Cedar article.

The config.assets.initialize_on_precompile option has been removed is and not needed for Rails 4. Also, any failure in asset compilation will now cause the push to fail. For Rails 4 asset pipeline support see the Ruby Support page.

Troubleshooting

If you push up your app and it crashes (heroku ps shows state crashed), check your logs to find out what went wrong. Here are some common problems.

Runtime dependencies on development/test gems

If you're missing a gem when you deploy, check your Bundler groups. Heroku builds your app without the development or test groups, and if you app depends on a gem from one of these groups to run, you should move it out of the group.

One common example using the RSpec tasks in your Rakefile. If you see this in your Heroku deploy:

$ heroku run rake -T
Running `bundle exec rake -T` attached to terminal... up, ps.3
rake aborted!
no such file to load -- rspec/core/rake_task

Then you've hit this problem. First, duplicate the problem locally:

$ bundle install --without development:test
…
$ bundle exec rake -T
rake aborted!
no such file to load -- rspec/core/rake_task

Now you can fix it by making these Rake tasks conditional on the gem load. For example:

Rakefile

begin
  require "rspec/core/rake_task"
  desc "Run all examples"
  RSpec::Core::RakeTask.new(:spec) do |t|
    t.rspec_opts = %w[--color]
    t.pattern = 'spec/**/*_spec.rb'
  end
rescue LoadError
end

Confirm it works locally, then push to Heroku.

Done

You now have your first application deployed to Heroku. The next step is to deploy your own application. If you're interested in reading more you can read more about Ruby on Heroku at the Devcenter.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment