public
Fork of railsmachine/moonshine
Description: Fork for my experimental Moonshine branches
Homepage: http://railsmachine.github.com/moonshine/
Clone URL: git://github.com/jnewland/moonshine.git
name age message
file .gitignore Tue Jun 30 09:39:52 -0700 2009 cleanup .autotest [roblingle]
file LICENSE Fri Mar 13 09:47:48 -0700 2009 doc and license and stuff [jnewland]
file Rakefile Fri Mar 13 13:58:14 -0700 2009 test, not spec [jnewland]
file Readme.rdoc Mon Jul 13 08:34:56 -0700 2009 links for getting help [roblingle]
directory generators/ Thu Jul 16 07:00:57 -0700 2009 closes #9, installs the scm specified in moonsh... [roblingle]
file init.rb Wed Feb 18 08:11:18 -0800 2009 configuration step [jnewland]
directory lib/ Sun Jul 19 14:17:45 -0700 2009 fixes #5, allows mysql queries to be when a pas... [roblingle]
directory recipes/ Thu Jul 16 07:00:57 -0700 2009 closes #9, installs the scm specified in moonsh... [roblingle]
directory test/ Tue Jul 07 10:43:04 -0700 2009 allow rails logrotate configuration to be overr... [jnewland]
Readme.rdoc

Moonshine

Moonshine is Rails deployment and configuration management done right.

Deploying Your Rails Application with Moonshine in 15 minutes

Requirements

  • A server running Ubuntu 8.10 (Want to see your favorite platform supported? Fork Moonshine on GitHub!)
  • A user on this server that can:
    • Execute commands via sudo
    • Access your application’s Git repository

Instructions

  • ruby script/plugin install git://github.com/railsmachine/moonshine.git
  • Ensure all required gems are declared using config.gem calls in config/environment.rb.
  • ruby script/generate moonshine
  • Edit the configuration file at config/moonshine.yml with your apps’s details. (If you’re using a user other than rails, specify this here)
  • Edit the Moonshine::Manifest::Rails manifest generated for your application at app/manifests/application_manifest.rb to declare other packages, services, or files your application depends on (memcached, sphinx, etc).
  • capify your application
    • Your config/deploy.rb can be super barebones, as Moonshine loads the contents of config/moonshine.yml in as Cap variables and sets some sane defaults. Here’s what I use:
       server "myubuntuserver.com", :app, :web, :db, :primary => true
      
  • git add . && git commit -am "added moonshine" && git push
  • cap deploy:setup
    • This will bootstrap your Ubuntu server with Ruby Enterprise Edition.
  • cap deploy
    • This will install all needed dependencies for your application and deploy it for the first time. The initial deploy will take awhile, as things such as MySQL, etc, are being installed. It’s worth the wait though, because what you end up with is an extremely maintainable server that you’ll never need to SSH into again!

Moonshine and Capistrano

Moonshine tightly integrates with Capistrano, utilizing its callback system to apply your manifests to the server on each deploy. In addition, variables are set in Capistrano for all keys on the config/moonshine.yml hash, allowing your Capistrano configuration to be extremly barebones.

By default, Capistrano applies the manifest at app/manifests/application_manifest.rb. To run a different manifest, for example one to install and maintain packages on a server of a different role:

    set :moonshine_manifest, 'memcached_manifest'

If you’d like to prevent Capistrano from applying your Moonshine manifests for any reason:

    set :moonshine_apply, false

Local Config

Often, certain files (config/database.yml, etc) are excluded from an application’s SCM, but required to be present for deploy. We’ve abstracted this pattern with some Capistrano automation that goes great with Moonshine.

For example, if you keep config/database.yml out of your SCM, add the following line to your config/deploy.rb:

    set :local_config, %w(config/database.yml)

This file will then be automatically uploaded and symlinked to current/config/database.yml on each deploy.

Running Tests

To run the test suite, follow these steps to create a testbed app:

    rails moonshine_tests
    cd moonshine_tests
    git clone git://github.com/railsmachine/moonshine.git /vendor/plugins/moonshine
    script/generate moonshine
    cd vendor/plugins/moonshine
    rake test

Getting Help

You can find more examples in the documentation and on the Wiki.

For help or general discussion, visit the Moonshine newsgroup.