Skip to content

Commit

Permalink
Merge branch 'master' into replace_uri_parse_with_addressable
Browse files Browse the repository at this point in the history
  • Loading branch information
lucke84 committed Apr 29, 2016
2 parents 4068f89 + 9995619 commit 7236681
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/additional-reading/heroku-deployment.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@ If for some reason you need custom buildpacks that are not officially supported

### Swap out sqlite for postgres by doing the following:

1. Delete the line with `sqlite` and replace it with:
#### 1. Delete the line with `sqlite` and replace it with:

```ruby
gem 'pg'
```

2. Replace your `database.yml` file with this (assuming your app name is "ror")
#### 2. Replace your `database.yml` file with this (assuming your app name is "ror")

```yml
default: &default
Expand Down Expand Up @@ -65,7 +65,7 @@ bin/rake db:migrate
bin/rake db:setup
```

3. Create a rake file to add webpack compilation to asset precompilation. You may already have this file if you used the React on Rails generator.
#### 3. Create a rake file to add webpack compilation to asset precompilation. You may already have this file if you used the React on Rails generator.

```ruby
# lib/tasks/assets.rake
Expand Down

0 comments on commit 7236681

Please sign in to comment.