I'm having some troubles deploying this app on Heroku. The code is on a folder, where i created a git using git init
, added everything to my git and then pushed everything to Heroku before running it.
I generated my requirements.txt
and my procfile
looks like this:
test: python "application.py" heroku ps:scale web=1
But on my webpage nothing will load, i'm assuming because i'm only running the Python part. How can i deploy it so that Heroku will know to run not only my Python script, but also the frontend part with the javascript and index.html files?