public
Description: Spree is a complete open source e-commerce solution for Ruby on Rails.
Homepage: http://spreecommerce.com
Clone URL: git://github.com/railsdog/spree.git
spree /
name age message
file .gitignore Fri May 08 13:37:19 -0700 2009 Ignoring IDEA project directory. [schof]
file CHANGELOG Thu May 14 07:15:44 -0700 2009 Fixed an issue with rspec dependency and rake t... [schof]
file CONTRIBUTORS Sat May 02 12:29:39 -0700 2009 Updated with Paul's real name. [schof]
file INSTALL Sun May 03 17:40:23 -0700 2009 Updated INSTALL message. [schof]
file LICENSE Mon Jun 01 17:44:48 -0700 2009 Updated copyright date in LICENSE. [schof]
file README.markdown Thu May 28 00:39:29 -0700 2009 fixed link to git repository [HarryGuerilla]
file Rakefile Wed Apr 16 11:49:32 -0700 2008 improved bootstrap process [schof]
directory app/ Wed Jul 01 18:25:14 -0700 2009 Merge branch 'master' of git://github.com/mwlan... [schof]
directory bin/ Fri Jun 20 11:37:36 -0700 2008 Fixed a bug with the 'spree' command introduced... [schof]
directory config/ Mon Jun 29 23:05:32 -0700 2009 [#533 state:resolved responsible:paulcc milesto... [paulcc]
directory db/ Thu Jul 02 04:54:40 -0700 2009 Stole some seed code from DHH [schof]
directory lib/ Thu Jul 02 04:54:40 -0700 2009 Stole some seed code from DHH [schof]
directory log/ Wed Apr 30 19:01:05 -0700 2008 Updated ignore file to reflect new directory st... [schof]
directory public/ Wed Jun 24 19:22:12 -0700 2009 Replaced ship_amount and tax_amount with a flex... [schof]
directory script/ Sat Jan 03 08:32:03 -0800 2009 Updated rspec, rspec-rails, calendar_date_selec... [BDQ]
directory spec/ Sun Jun 28 19:44:19 -0700 2009 Rewrote some existing rspec tests as shoulda. [... [schof]
directory test/ Wed Jul 01 08:46:34 -0700 2009 Merge branch '541-only-completed-orders' [schof]
directory vendor/ Sun Jun 28 04:24:07 -0700 2009 fix typo in paperclip plugin [paulcc]
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/railsdog/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

Refer to the Spree ecommerce project page to learn more about spree.