Astephen2
Astephen2

Reputation: 851

Deploying Rails App

I have a question about deploying a Rails application. I know the information exists else where, but my issue is that I can't place it cohesively together. Currently I'm on Dreamhost and would like instructions on how to deploy my app there. I feel like I should be using Capistrano in some fashion but I honestly am pretty lost. Any suggestions on deploying easily or a better host that is around the same price point (less than $10 a month).

Upvotes: 1

Views: 513

Answers (2)

coreyward
coreyward

Reputation: 80041

Any suggestions on deploying easily or a better host that is around the same price point (less than $10 a month).

Have you heard of Heroku yet? You can run a single dyno instance (one running instance of your application) for free, including access to a shared Postgres database service. It's extremely popular among rubyists for good reason.

Upvotes: 3

VivekVarade123
VivekVarade123

Reputation: 3684

You should take a look at this screencast from peepcode for details about hosting your app using capistrano. It is about installing phusion-passenger but they also explain how you can host your application on 'Dreamhost'

Upvotes: 1

Related Questions