From 999561952be5c1ab84a608b1f3d84e619dac86c2 Mon Sep 17 00:00:00 2001 From: Justin Gordon Date: Wed, 27 Apr 2016 21:43:40 -1000 Subject: [PATCH] Update heroku-deployment.md --- docs/additional-reading/heroku-deployment.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/additional-reading/heroku-deployment.md b/docs/additional-reading/heroku-deployment.md index 7b9d2f23f..b4e312843 100644 --- a/docs/additional-reading/heroku-deployment.md +++ b/docs/additional-reading/heroku-deployment.md @@ -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 @@ -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