CARVIEW |
Every repository with this icon (

Every repository with this icon (

Description: | Spree is a complete open source e-commerce solution for Ruby on Rails. edit |
Homepage: | https://spreecommerce.com edit |
Public Clone URL: |
git://github.com/railsdog/spree.git
Give this clone URL to anyone.
git clone git://github.com/railsdog/spree.git
|
Your Clone URL: |
Use this clone URL yourself.
git clone git@github.com:railsdog/spree.git
|
name | age | message | |
---|---|---|---|
![]() |
.gitignore | Loading commit data... ![]() |
|
![]() |
CHANGELOG | ||
![]() |
CONTRIBUTORS | ||
![]() |
INSTALL | Mon Apr 21 18:17:33 -0700 2008 | updated documentation [schof] |
![]() |
LICENSE | Tue Apr 15 19:58:05 -0700 2008 | more fixes for the spree project generation [schof] |
![]() |
README.markdown | Mon Nov 17 13:12:55 -0800 2008 | Updated README. [schof] |
![]() |
Rakefile | Wed Apr 16 11:49:32 -0700 2008 | improved bootstrap process [schof] |
![]() |
app/ | ||
![]() |
bin/ | Fri Jun 20 11:37:36 -0700 2008 | Fixed a bug with the 'spree' command introduced... [schof] |
![]() |
config/ | ||
![]() |
db/ | ||
![]() |
lang/ | ||
![]() |
lib/ | ||
![]() |
log/ | Wed Apr 30 19:01:05 -0700 2008 | Updated ignore file to reflect new directory st... [schof] |
![]() |
public/ | ||
![]() |
script/ | Tue Jul 08 18:29:24 -0700 2008 | New extension script for installing extensions ... [schof] |
![]() |
spec/ | ||
![]() |
stories/ | Tue Apr 08 13:03:01 -0700 2008 | additional refactoring related to engines move [schof] |
![]() |
test/ | ||
![]() |
vendor/ |
SUMMARY
Spree is a complete open source commerce solution for Ruby on Rails. It was developed by Sean Schofield under the original name of Rails Cart before changing its name to Spree.
QUICK START
Running from sources (latest and greatest features)
Clone the git repo
git clone git://github.com/schof/spree.git spree
Create the necessary config/database.yml file
Install the gem dependencies
rake gems:install
Bootstrap the database (run the migrations, create admin account, optionally load sample data.)
rake db:bootstrap
Start the server
script/server
Running the Gem
Install spree Gem
NOTE: This may take a while. The gem currently includes a frozen version of Rails 2.0.2sudo gem install spree
Create Spree Application
spree <app_name>
Create your database and edit the config/database.yml to taste.
You can skip this step if using sqlite3 as your database.rake db:create
Bootstrap
cd <app-name> rake db:bootstrap
Launch Application
script/server
Browse Store
https://localhost:xxxx/store
Browse Admin Interface
https://localhost:xxxx/admin
Deploying
Deploy spree as a normal rails application. If you use apache+cgi/fastcgi take a look at the example .htaccess located in
public/.htaccess.example
i18n/l10n Support
Basic localization and internationalization support is now added using the Globalite Plugin from Matt Aimonetti.
Working features:
- Rails Localization
- UI Localization
In the near future:
- Content Localization
Please read this, this and this to understand how the plugin works.
Please, please, please ask Sean how you can help, lot of work is still to be done.
UPDATE: Take a look at i18n page on Spree wiki