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

Andrew Cantino преди 8 години
родител
ревизия
e1a2b5ae25
променени са 1 файла, в които са добавени 3 реда и са изтрити 1 реда
  1. 3 1
      app/views/devise/registrations/new.html.erb

+ 3 - 1
app/views/devise/registrations/new.html.erb

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