rubidine / radiant_rbiz

A wrapper to let RBiz eCommerce solution live inside of a Radiant installation.

This URL has Read+Write access

name age message
file .gitmodules Fri Jan 16 16:19:56 -0800 2009 Added acts_as_list, fixed_point_field, unique_t... [Steven Hayes]
file README.md Wed Jan 21 13:32:49 -0800 2009 I hate markdown. [Steven Hayes]
file Rakefile Fri Jan 16 12:43:19 -0800 2009 First Commit. [Steven Hayes]
directory app/ Fri Jan 16 12:43:19 -0800 2009 First Commit. [Steven Hayes]
directory db/ Fri Jan 16 12:43:19 -0800 2009 First Commit. [Steven Hayes]
directory lib/ Sun Jul 12 20:01:37 -0700 2009 Version upgrade. 0.8 compat. Use gem of will_p... [Todd Willey]
file radiant_rbiz_extension.rb Sun Jul 12 20:01:37 -0700 2009 Version upgrade. 0.8 compat. Use gem of will_p... [Todd Willey]
directory test/ Fri Jan 16 12:43:19 -0800 2009 First Commit. [Steven Hayes]
directory vendor/ Tue Jul 14 09:05:13 -0700 2009 Update submodule version. [Todd Willey]
README.md

Radiant RBiz ============

A wrapper to let RBiz eCommerce solution live inside of a Radiant installation.

Getting Started

  • If you're starting from scratch, create a new instance of Radiant CMS.

radiant my_store

  • Install this extension to the vendor/extensions directory of your Radiant.

cd my_store/vendor

git clone git://github.com/rubidine/radiant_rbiz.git extensions/radiant_rbiz

  • You're going to need the named_scope plugin as well, grab that.

git clone git://github.com/metaskills/named_scope.git plugins/named_scope

  • There's a number of submodules you'll need, so pull those in.

cd extensions/radiant_rbiz

git submodule init

git submodule update

  • Create your database and run migrations for radiant, radiant_rbiz and rbiz

cd ../../..

mysqladmin -u root create my_store_development

rake db:bootstrap

rake radiant:extensions:radiant_rbiz:migrate

rake cart:migrate

  • There are a couple of initializers that need to be copied over from radiant_rbiz to the radiant instance, so run the rake task.

rake radiant:extensions:radiant_rbiz:initializers