From e1a2b5ae25361407ec53f928df72ed9b719ffb76 Mon Sep 17 00:00:00 2001 From: Andrew Cantino Date: Thu, 30 Jun 2016 00:45:53 -0400 Subject: [PATCH] Heroku now makes an empty repo with the deployment button (#1570) --- app/views/devise/registrations/new.html.erb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/views/devise/registrations/new.html.erb b/app/views/devise/registrations/new.html.erb index 5b36d721..648a69f5 100644 --- a/app/views/devise/registrations/new.html.erb +++ b/app/views/devise/registrations/new.html.erb @@ -19,9 +19,11 @@
  • Run the following commands:
    <%= 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 %>