Skip to content

Commit

Permalink
Update heroku-deployment.md
Browse files Browse the repository at this point in the history
  • Loading branch information
justin808 committed Apr 28, 2016
1 parent 557cb3e commit 9995619
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 9995619

Please sign in to comment.