From f08e759655968f2c1068254e8fe9765761d548c1 Mon Sep 17 00:00:00 2001 From: Brook Riggio Date: Tue, 19 Mar 2013 09:12:44 -0700 Subject: [PATCH] Update instructions for deploying to Heroku Heroku no longer uses a gem, so update verbiage appropriately. Also: the default stack is now cedar, so the option is not needed. --- DEPLOY.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/DEPLOY.md b/DEPLOY.md index 4ca9dea5..fd0362de 100644 --- a/DEPLOY.md +++ b/DEPLOY.md @@ -109,11 +109,11 @@ And Kandan should be available on your Cloud Foundry backend now!
# Heroku -You'll need to have the [heroku gem](https://github.com/heroku/heroku) installed and to have an existing [heroku account](https://api.heroku.com/signup). Assuming that, this should work reliably on Heroku: +You'll need to have the [heroku CLI](https://github.com/heroku/heroku) installed and to have an existing [heroku account](https://api.heroku.com/signup). Assuming that, this should work reliably on Heroku: git clone https://github.com/kandanapp/kandan.git cd kandan - heroku create --stack cedar + heroku create __appname__ # appname is optional git push heroku master heroku run rake db:migrate kandan:bootstrap && heroku open echo "Done, go forth and chat!" @@ -121,7 +121,7 @@ You'll need to have the [heroku gem](https://github.com/heroku/heroku) installed ### Integrate Kandan on Heroku with your Amazon S3_BUCKET ( [Heroku article on AWS S3 to store static assets and file uploads](https://devcenter.heroku.com/articles/s3) ). Run the following line, replacing the the global variable values with your own: - heroku config:add S3_ACCESS_KEY_ID=xxx S3_SECRET_ACCESS_KEY=xxxx S3_BUCKET=bucket_name + heroku config:add S3_ACCESS_KEY_ID=abc S3_SECRET_ACCESS_KEY=xyz S3_BUCKET=bucket_name If successful you should get a response similar to: