Search code examples
node.jsherokuworkerprocfile

I've made a correct Procfile but I dont see a worker dyno in the dashboard


Im trying to deploy a very simple bot to heroku but I cant set the worker dyno because it doesnt show up on the dashboard, even though I have a Procfile with just one line it: worker: node app.js


Solution

  • So the issue was that Heroku only builds off the master branch and I was developing on a different branch. I solved this by assigning my current branch as the master branch git push heroku YourDifferentBranchHere:master