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)
Sun May 03 17:40:47 -0700 2009
commit  12e3d4d48db4e4c7b1cd5a6ba3f546814b7e0827
tree    96066546cb73922dfe70e3a94bdc71ed3e7d5a39
parent  0b4a633b836de1d314d6f2c0a4fb2cdbf7731f80
spree /
name age message
file .gitignore Fri Apr 24 20:04:48 -0700 2009 git ignore #2 [stephp]
file CHANGELOG Tue Apr 28 16:43:51 -0700 2009 Updated CHANGELOG [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 Tue Apr 15 19:58:05 -0700 2008 more fixes for the spree project generation [schof]
file README.markdown Wed Apr 29 19:23:35 -0700 2009 Fixed several issues with the guest checkout em... [schof]
file Rakefile Wed Apr 16 11:49:32 -0700 2008 improved bootstrap process [schof]
directory app/ Sun May 03 07:39:28 -0700 2009 added special case for IE7 in admin-menu layout... [paulcc]
directory bin/ Fri Jun 20 11:37:36 -0700 2008 Fixed a bug with the 'spree' command introduced... [schof]
directory config/ Sun May 03 17:40:47 -0700 2009 Updated authlogic dependency. [schof]
directory db/ Sun May 03 15:31:23 -0700 2009 Fixed an issue with rake tasks and authlogic. #... [schof]
directory lib/ Sun May 03 17:39:58 -0700 2009 Fixed an issue wtih authlogic on startup in a d... [schof]
directory log/ Wed Apr 30 19:01:05 -0700 2008 Updated ignore file to reflect new directory st... [schof]
directory public/ Sun May 03 07:39:28 -0700 2009 added special case for IE7 in admin-menu layout... [paulcc]
directory script/ Sat Jan 03 08:32:03 -0800 2009 Updated rspec, rspec-rails, calendar_date_selec... [BDQ]
directory spec/ Mon Apr 27 07:56:32 -0700 2009 Fixed a problem with en-US rails translation. [schof]
directory vendor/ Fri Apr 24 19:55:02 -0700 2009 Merge branch 'master' into new_frontend Confli... [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

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