My flask app reads an locally stored excel file and it is running perfect on local machine.
When I deploy the same app on heroku
it is throws exception-
FileNotFoundError: [Errno 2] No such file or directory: 'C:/QuestionBank_v5.xlsx'
Which is valid as heroku deployment cannot read from my local machine.
Is there a way to store this file along with flask app files and make it readable when deployed on heroku?