[Answer]-How do I let Heroku Know I have a requirements.txt file

1👍

I typed in git commit -m 'another commit' and I got this output:

Your branch is up-to-date with 'django/master'.
Untracked files:
    procfile
    requirements.txt

I then typed in these commands:

git add procfile
git add requirements.txt

I typed in git commit -m 'another commit' and then git push heroku master, which worked.

0👍

I’m not really sure, but maybe you miss to add a [Procfile].(https://devcenter.heroku.com/articles/procfile) This file is neccesary to declare which server/process is going to run the dyno.

Leave a comment