Skip to content
João Almeida edited this page Sep 10, 2013 · 4 revisions
  • Configuration

In your project folder:

heroku login

Then enter your credentials.

  1. Add you public key to heroku

heroku keys:add ~/.ssh/your_public_key (e.g. ~/.ssh/id_rsa_heroku.pub)

  1. Add this to your ssh config:
Host heroku-shopify
Hostname heroku.com
IdentityFile your_private_key (e.g. ~/.ssh/id_rsa_heroku)
User git
ServerAliveInterval 3
ServerAliveCountMax 120
  1. Add a heroku remote to your project:

In your project folder: git remote add heroku heroku-shopify:invoicexpress-shopify.git

  • Deploy

git push heroku master

or if you want to push another branch

git push heroku your_branch:master

HAPPY DEPLOYS :D

Clone this wiki locally