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 Sat Nov 21 11:30:41 -0800 2009 New Overview Dashboard included as a core exten... [BDQ]
file CHANGELOG Sat Dec 05 15:01:10 -0800 2009 Updated CHANGELOG [schof]
file CONTRIBUTORS Tue Sep 22 06:13:01 -0700 2009 Updated CHANGELOG, CONTRIBUTORS and copyright. [schof]
file INSTALL Tue Jul 07 17:06:15 -0700 2009 Improved handling of seed and fixture data with... [schof]
file LICENSE Sun Oct 04 09:40:58 -0700 2009 Minor tweak to license - changed to Rails Dog LLC [schof]
file README.markdown Thu May 28 00:39:29 -0700 2009 fixed link to git repository [HarryGuerilla]
file Rakefile Sat Dec 05 15:00:59 -0800 2009 Updated Rails to version 2.3.5 [#933 state:res... [schof]
directory app/ Wed Dec 09 08:52:00 -0800 2009 Introduced field format 'password'. All passwor... [romul]
directory bin/ Tue Oct 13 10:42:47 -0700 2009 Seeds file now copied over by update command. ... [schof]
directory config/ Wed Dec 09 08:53:41 -0800 2009 Bug on dutch translation. Thanks to Rafael Coel... [BDQ]
directory db/ Mon Dec 07 08:59:04 -0800 2009 Fixed issue with admin user creation when AUTO_... [schof]
file generate Wed Jul 22 05:56:03 -0700 2009 Refactored calculators to support configuration... [schof]
directory lib/ Sun Dec 06 14:21:01 -0800 2009 Now sending mail with tls(for example: via GMai... [romul]
directory log/ Wed Apr 30 19:01:05 -0700 2008 Updated ignore file to reflect new directory st... [schof]
directory public/ Wed Dec 09 08:52:00 -0800 2009 Introduced field format 'password'. All passwor... [romul]
directory script/ Sat Jan 03 08:32:03 -0800 2009 Updated rspec, rspec-rails, calendar_date_selec... [BDQ]
directory spec/ Wed Nov 18 02:15:00 -0800 2009 Removed specs for deprecated seo_url functional... [BDQ]
file spree.gemspec Sat Dec 05 16:04:18 -0800 2009 Updated Rails to version 2.3.5 [#933 state:res... [schof]
directory test/ Wed Dec 09 04:48:33 -0800 2009 Rewritten outdated test. [#814] [romul]
directory vendor/ Wed Dec 09 08:52:00 -0800 2009 Introduced field format 'password'. All passwor... [romul]
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.