I started writing my discord bot and wondered about the host - my choice fell on Heroku. Little by little I began to master this system, but I have not yet reached everything. Now the question has arisen of downloading the bot to the heroku itself.
I use commands:

$ git add . $ git commit -m "Test" $ git push heroku master 

Uploads all files normally, except the node_modules folder. I think because there are 270+ files in it. This is the question: How can I upload this folder to Heroku ?

    0