I just added a buildpack for my heroku application.
It said that on the next deploy, your app will also install the dependencies that your module needs to run.
So i didn't know if this is automatically or if i have to enter a command.
I went to the directory of my project on my local computer and typed these:
git add .
git commit -am "Changes made"
git push heroku master
When i entered the commit command, i got this message:
On branch master
nothing to commit, working tree clean
When i entered the push command, i got this message:
I got a message that everything is up-to-date
.
When i type git status
i get:
On branch master
nothing to commit, working tree clean
So i went to my app and still it is not working.
So what do i have to do in order for heroku to install the dependencies for my app to run properly?