public
Description: Configures a WordPress blog to run alongside your Rails app
Homepage:
Clone URL: git://github.com/railsmachine/moonshine_wordpress.git
name age message
file README.rdoc Fri May 15 12:42:36 -0700 2009 initial commit [roblingle]
directory lib/ Fri May 15 12:42:36 -0700 2009 initial commit [roblingle]
directory moonshine/ Fri May 15 12:42:36 -0700 2009 initial commit [roblingle]
directory spec/ Fri May 15 12:42:36 -0700 2009 initial commit [roblingle]
directory templates/ Mon Jun 01 08:32:37 -0700 2009 cleanup [roblingle]
README.rdoc

Moonshine_Wordpress

A plugin for Moonshine

A plugin for installing and managing WordPress.

Installs everything you need to get a WordPress blog up and running. See below for minimum configuration instructions, look through templates/ to see all of the available options.

To generate values for the secret keys below, click here.

Instructions

  • script/plugin install git://github.com/railsmachine/moonshine_wordpress.git
  • Configure settings if needed. Although it’s not required, you should set these values at least:
      configure(
          :wordpress => {
            :domain          => 'blog.yourdomain.com',
            :auth_key        => 'SOME_UNIQUE_VALUE',
            :secure_auth_key => 'SOME_UNIQUE_VALUE',
            :logged_in_key   => 'SOME_UNIQUE_VALUE',
            :nonce_key       => 'SOME_UNIQUE_VALUE',
            :db => {:password => 'sekrit_db_password'}
          }
        )
    
  • Include the plugin and recipe(s) in your Moonshine manifest
      plugin :wordpress
      recipe :wordpress
    
  • After deploying, go to blog.yourdomain.com/wp-admin/install.php