Does Heroku have a free option? [closed]
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 11 years ago.
Improve this questionI'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开发者_Python百科 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.
heroku workers 1
To stop that worker, run this command:
heroku workers 0
For more information see this page: http://devcenter.heroku.com/articles/delayed-job
精彩评论