Geo
Geo

Reputation: 96807

How does Heroku's charging model work for a Rails app?

I really can't make any sense of Heroku's offer. If for example, I create a Rails app, and I want to upload it to Heroku, do I need to pay something? I would like to provide the client something he could play with, but I don't know if I need web dynos or worker dynos just for this.

Upvotes: 0

Views: 413

Answers (2)

Neil Middleton
Neil Middleton

Reputation: 22238

Read the DevCenter - there's not much to take in..

http://devcenter.heroku.com/articles/quickstart

http://devcenter.heroku.com/articles/rails3

Upvotes: 3

shingara
shingara

Reputation: 46914

Heroku has a free offer. So if you don't pay, you have one dyno and can use it.

Very simple to test without big traffic.

The difference between dyno and worker is a dyno is use to web rendering and worker to background job.

Upvotes: 2

Related Questions