public
Fork of railsdog/spree
Description: This is my personal fork of the Spree project. You want railsdog/spree for the official Spree repository.
Homepage: http://spreecommerce.com
Clone URL: git://github.com/schof/spree.git
schof (author)
Tue Nov 18 13:42:04 -0800 2008
commit  ab22b65c9d8313f38003a3081760d269a062cf7c
tree    d983ea0c91d0f11a8e67814d5f89474c726cacc8
parent  104be9f25c02935831ac304b0a5b6f0c636b9da1
spree /
name age message
file .gitignore Sun Nov 09 14:18:42 -0800 2008 Updated ignore file. [schof]
file CHANGELOG Loading commit data...
file CONTRIBUTORS Mon Nov 17 08:49:58 -0800 2008 Updated contributors list. [schof]
file INSTALL Mon Apr 21 18:17:33 -0700 2008 updated documentation [schof]
file LICENSE Tue Apr 15 19:58:05 -0700 2008 more fixes for the spree project generation [schof]
file README.markdown Mon Nov 17 13:12:55 -0800 2008 Updated README. [schof]
file Rakefile Wed Apr 16 11:49:32 -0700 2008 improved bootstrap process [schof]
directory app/ Tue Nov 18 11:51:05 -0800 2008 Forgot to get rid of an end tag. [edmundo]
directory bin/ Fri Jun 20 11:37:36 -0700 2008 Fixed a bug with the 'spree' command introduced... [schof]
directory config/
directory db/ Tue Oct 28 14:45:36 -0700 2008 Removed all legacy ship_address references. Re... [schof]
directory lang/ Mon Nov 10 08:46:11 -0800 2008 Added "new or existing user" functionality to t... [schof]
directory lib/
directory log/ Wed Apr 30 19:01:05 -0700 2008 Updated ignore file to reflect new directory st... [schof]
directory public/ Thu Oct 30 08:47:56 -0700 2008 Added cart summary to Shipping method selection... [BDQ]
directory script/ Tue Jul 08 18:29:24 -0700 2008 New extension script for installing extensions ... [schof]
directory spec/ Mon Nov 10 13:44:23 -0800 2008 Added some model specs. [edmundo]
directory stories/ Tue Apr 08 13:03:01 -0700 2008 additional refactoring related to engines move [schof]
directory test/ Fri Sep 26 12:22:31 -0700 2008 Removed empty unit and functional tests. [schof]
directory vendor/ Tue Nov 18 13:36:17 -0800 2008 Improved the look of the shipping selection. [schof]
README.markdown

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)

  1. Clone the git repo

    git clone git://github.com/schof/spree.git spree
    
  2. Create the necessary config/database.yml file

  3. Install the gem dependencies

    rake gems:install
    
  4. Bootstrap the database (run the migrations, create admin account, optionally load sample data.)

    rake db:bootstrap
    
  5. Start the server

    script/server
    

Running the Gem

  1. Install spree Gem

    sudo gem install spree
    
    NOTE: This may take a while. The gem currently includes a frozen version of Rails 2.0.2
  2. Create Spree Application

    spree <app_name>
    
  3. Create your database and edit the config/database.yml to taste.

    rake db:create
    
    You can skip this step if using sqlite3 as your database.
  4. Bootstrap

    cd <app-name>
    rake db:bootstrap
    
  5. Launch Application

    script/server
    

Browse Store

http://localhost:xxxx/store

Browse Admin Interface

http://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