I have my first node.js app (runs fine locally) - but I am unable to deploy it via heroku (first time w/ heroku as well). The code is below. SO doesn\'t let me write so much
It's worth mentioning that if your code doesn't specify a port, then it shouldn't be a web process and probably should be a worker process instead.
web
worker
So, change your Procfile to read (with your specific command filled in):
Procfile
worker: YOUR_COMMAND
and then also run on CLI:
heroku scale worker=1