I’m using heroku to host a very simple signup form I create in Rails 3.1
I am also using delayed_job to deliver confirmation email to registered users.
I think I will be using 1 dyno and 1 worker for this. But I’m not very sure about this. Someone using heroku, please clarify about this.
Also when does the billing start.
There is a free option, but it is very restricted, coming with a 5mb database and one “dyno” (a server for requests to your application) and no worker processes.
With one dyno and one worker your server hosting costs will be at most $35 a month. I say “at most” because you are able to spool up and shut down workers as you need them, meaning that you could reduce your costs by managing the uptime and downtime for your workers.
To start a worker, run this command from your computer while in the Heroku application’s directory.
To stop that worker, run this command:
For more information see this page: http://devcenter.heroku.com/articles/delayed-job