Alamin
Alamin

Reputation: 2165

How to update heroku app (Node js) from github repo?

I have tried the same as React deploy precess.

git status
git remote add origin <repo link>
git commit -m "node js"
git add .

But it does not work.

can you know me how to update the node js app in Github that I have been uploaded to the Heroku server.

Upvotes: 0

Views: 221

Answers (1)

Hamza Khattabi
Hamza Khattabi

Reputation: 674

In your app deployment settings, add a repository to link your app with it :

enter image description here

After that you can enable the automatic deploy on a specific branch and each push or deploy manually a branch.

enter image description here

Upvotes: 2

Related Questions