Skip to content

Instantly share code, notes, and snippets.

@debreczeni
Created November 21, 2011 20:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save debreczeni/1383786 to your computer and use it in GitHub Desktop.
Save debreczeni/1383786 to your computer and use it in GitHub Desktop.
how to install edge refinery cms for rails 3.1:

how to install edge refinery cms for rails 3.1:

install rail 3.1

gem install rails

generate new app from refinerycms github repo

rails new app_name -m https://raw.github.com/resolve/refinerycms/master/templates/refinery/edge.rb

add seo_meta to Gemfile

gem 'seo_meta'

generate migrations

rake refinery_authentication:install:migrations && rake refinery_core:install:migrations && rake refinery_images:install:migrations && rake refinery_pages:install:migrations && rake refinery_resources:install:migrations && rake refinery_settings:install:migrations && rake seo_meta_engine:install:migrations

migrate database

rake db:migrate

start server

rails s
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment