Skip to content Skip to sidebar Skip to footer

Heroku Successfully Deployed But I Still Keep Getting No Web Process Running

I'm trying to push a telegram bot into Heroku. These are files within my folder. /new_bot ---/requirements.txt ---/Procfile #worker: python new_bot.py ---/init.py #empty ---/

Solution 1:

For a web process in heroku you need to add something like this to your Proc file:

Below is a rails equivalent, you need specific to your app.

web: bundle exec rails server -p $PORT

And then run:

heroku ps:scale web=1

Post a Comment for "Heroku Successfully Deployed But I Still Keep Getting No Web Process Running"