this is the error i am getting, i even changed my Procfile. did `git status' , added and pushed again and still i am getting the same error.
Asked
Active
Viewed 222 times
1 Answers
0
Check if this is:
- a a missing dependency of django-organizations
- a wrong requirements.txt content
- a wrong path for the Procfile (it should be on the same path as
manage.py
)
Since, in your case, you have a FileNotFoundError, as in here, make sure that file Restaurant_reviews.tsv
is part of your repository.

VonC
- 1,262,500
- 529
- 4,410
- 5,250
-
thanks for this bro but i am using this in flask and there is just one file as app.py, there are no files as wsgi.py or manage.py but Procfile is in that the same path as app.py. requirements.txt seems okay but idk how to upload files on heroku. i have already pushed the whole folder on heroku. – Raj Singh Jun 29 '20 at 06:45
-
@RajSingh OK. I would try and follow a tutorial like https://www.geeksforgeeks.org/deploy-python-flask-app-on-heroku/ or https://stackabuse.com/deploying-a-flask-application-to-heroku/, just to check if that is working. – VonC Jun 29 '20 at 07:11