Reputation: 2165
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
Reputation: 674
In your app deployment settings, add a repository to link your app with it :
After that you can enable the automatic deploy on a specific branch and each push or deploy manually a branch.
Upvotes: 2