I subscribed a Hobby plan in Heroku.
The details of the plan specifies that it allows up to 10 Process Types.
So I developed an app with the following Procfile:
backend-dev: node ./backend-dev/backend.js
backend-prod: node ./backend-prod/backend.js
Which represents 2 Process Types, right ?
But when I run it with:
heroku ps:scale backend-dev=1
heroku ps:scale backend-prod=1
I end up with two Hobby Dynos... As the plan also specifies 7€/month/Dyno I am billed 14€/month.
So my questions are:
- What is the difference between Process Types and Dynos?
- Can I run 2 Process Types within a single Dyno?
- Can I run for instance 1 free Dyno (for backend-dev) and 1 Hobby Dyno (for backend-prod)?