I'm developing a dashboard in Dash which I am trying to deploy it to Heroku. However most of the example available, the script which Heroku calls is at the repo root level. The following is my repo structure:
Ideally I would not want to change the repo strucutre and would like Heroku to pick up dashboard.py using something similar as follow:
web: gunicorn src/dashboard:server
However Herokue does not able to pick that up and return with error saying that it could not local where the module is.
How should I set up the Procfile?