rubidine / radiant_rbiz
- Source
- Commits
- Network (1)
- Issues (0)
- Downloads (0)
- Wiki (1)
- Graphs
-
Branch:
master
Todd Willey (author)
Tue Jul 14 09:05:13 -0700 2009
| name | age | message | |
|---|---|---|---|
| |
.gitmodules | Fri Jan 16 16:19:56 -0800 2009 | |
| |
README.md | Wed Jan 21 13:32:49 -0800 2009 | |
| |
Rakefile | Fri Jan 16 12:43:19 -0800 2009 | |
| |
app/ | Fri Jan 16 12:43:19 -0800 2009 | |
| |
db/ | Fri Jan 16 12:43:19 -0800 2009 | |
| |
lib/ | Sun Jul 12 20:01:37 -0700 2009 | |
| |
radiant_rbiz_extension.rb | Sun Jul 12 20:01:37 -0700 2009 | |
| |
test/ | Fri Jan 16 12:43:19 -0800 2009 | |
| |
vendor/ | Tue Jul 14 09:05:13 -0700 2009 |
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
