From 51fb7cf371cd20af22700d454775c6306f1a72eb Mon Sep 17 00:00:00 2001 From: Doug Friedman Date: Tue, 21 May 2013 19:09:17 -0500 Subject: [PATCH] update heroku instructions --- docs/HEROKU.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/docs/HEROKU.md b/docs/HEROKU.md index d5031e66829..a09f41e1ce5 100644 --- a/docs/HEROKU.md +++ b/docs/HEROKU.md @@ -102,6 +102,19 @@ For details on how to reduce the monthly cost of your application, see [Advanced # Unset var unset SECRET_TOKEN + When precompiling locally make sure to alter the .gitignore file to allow the public/assets folder into version control. + + *.gitignore* + + ```diff + - public/assets + + # public/assets + ``` + + Also, you'll need to add a commit to get the precompiled assets onto Heroku. + git add public/assets + git push heroku heroku:master + 8. Push your heroku branch to Heroku. git push heroku heroku:master