Reputation: 1287
I'm trying to deploy a Django application to heroku, but i keep getting the following error when trying to scale my application
heroku ps:scale web=1
Error:
Scaling dynos... !
! Couldn't find that process type (web).
I don't understand what am i doing wrong here, my file is called Procfile
, it is located at the root of my project, here is how i defined it:
Procfile
web: gunicorn myproject.wsgi --log-file -
Upvotes: 1
Views: 2975
Reputation: 7503
follow this steps
heroku buildpacks:clear
index
option heroku buildpacks:add
push
the changesOR try this one step by step
Upvotes: 4