Heroku now makes an empty repo with the deployment button (#1570)

This commit is contained in:
Andrew Cantino 2016-06-30 00:45:53 -04:00 committed by GitHub
parent 923d6d0854
commit e1a2b5ae25

View file

@ -19,9 +19,11 @@
<li>Run the following commands:<br />
<%= content_tag :pre do -%>
heroku git:clone --app <%= content_tag :var, app_name %>
git clone https://github.com/cantino/huginn.git <%= content_tag :var, app_name %>
cd <%= content_tag :var, app_name %>
heroku git:remote -a <%= content_tag :var, app_name %>
cp .env.example .env
gem install bundler
bundle
bin/setup_heroku
<%- end %>