> 1) How do I add plugins into github? There's several ways... you can do it directly... I find a tool called 'braid' to be very handy.
> 2) How do I populate my production database? Depends... if you're starting from scratch you could try: cap deploy:migrate Otherwise do it manually, but if you can get things setup so that 'cap deploy:migrations' works you'll find life much easier as you make changes down the road. > 3) What do I do with capistrano and passenger when I update something > on my development side. Is it that I update on my side, push to > github > and then run cap deploy:update? Don't run deploy:update. Just run 'deploy' or 'deploy:migrations' (if you have migrations that need running). There's more to it than just updating the code. Capistrano will keep a backup of the old revision so you can easily revert (deploy:rollback) and will (or can) restart your web server, etc. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" 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/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---

