Merge pull request #1263 from dsander/fix-heroku-instructions

Fix heroku documentation
This commit is contained in:
Dominik Sander 2016-02-04 08:58:45 +01:00
commit 5aabf04c7c
2 changed files with 2 additions and 2 deletions

View file

@ -21,8 +21,8 @@
<%= content_tag :pre do -%>
heroku git:clone --app <%= content_tag :var, app_name %>
cd <%= content_tag :var, app_name %>
bundle
cp .env.example .env
bundle
bin/setup_heroku
<%- end %>

View file

@ -15,7 +15,7 @@ If you still wish to use the Heroku free plan (which won't work very well), plea
## Instructions
* Install the [Heroku Toolbelt](https://toolbelt.heroku.com/) and then run `heroku login`
* Go into your huginn directory and run `bundle`
* Go into your huginn directory and run `cp .env.example .env && bundle`
* Now, run the magic setup wizard: `bin/setup_heroku`
* That's it!
* If you make changes, you can re-run `bin/setup_heroku`, or just do `git push heroku master`.