0

I want to deploy my express nodejs app stored in a private Bitbucket repository to heroku. I have already pushed the code to the bitbucket private repo.

I have searched in the heroku interface for the bitbucket connection option that would let me automatically deploy the pushed code, however I could only find Github connection option.

I am newbie in web dev, so this question might be very primitive.

user2498079
  • 2,580
  • 7
  • 28
  • 49
  • 2
    Possible duplicate of [Deploying to Heroku using git on bitbucket](http://stackoverflow.com/questions/13240227/deploying-to-heroku-using-git-on-bitbucket) – Gntem May 15 '16 at 18:53

1 Answers1

0

Why not only push to heroku, here is what I'm doing in CMD.

git add .
git commit -m -a
heroku login
heroku create
git push heroku master

More detail

Even more

Muhammad Shahzad
  • 8,624
  • 20
  • 79
  • 128