If it's a straightforward Rails app (i.e. you don't require any custom daemon apps or anything of that sort), you might also want to consider using Heroku (http://heroku.com/). It's amazingly simple to push an app to it, and you don't have to worry about setting up your own infrastructure (db, Mongrel or Passenger, deploy scripts, etc.). The lowest plan is free, and you can scale it up as your needs grow.
Heroku hosts your Git repository (and in fact a deployment is a simple matter of doing a push), but you can still use it alongside with Github. Just make Github the origin (it probably already is), then add a separate remote for Heroku, so you can deploy your app with "git push heroku master". I still use regular VPS setups (such as Slicehost or Webbynode) for most apps, but I do like the premise of Heroku a lot. -Mirko On Oct 19, 2:44 am, Lee Hambley <[email protected]> wrote: > I second that, then also there is the Capistrano mailing list on > GoogleGroups which is pretty active (2-5 messages per day) which I moderate > and help with. > > -- Lee Hambley > > Twitter: @leehambley --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "GitHub" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/github?hl=en -~----------~----~----~----~------~----~------~--~---
