railsdog / spree-demo

Spree Demo

This URL has Read+Write access

name age message
file .gitignore Sat Oct 03 12:45:52 -0700 2009 First commit [railsdog]
file CHANGELOG Sat Oct 03 12:45:52 -0700 2009 First commit [railsdog]
file CONTRIBUTORS Sat Oct 03 12:45:52 -0700 2009 First commit [railsdog]
file Capfile Sat Oct 03 14:34:56 -0700 2009 Capistrano Deploy [Sean Schofield]
file INSTALL Sat Oct 03 12:45:52 -0700 2009 First commit [railsdog]
file LICENSE Sat Oct 03 12:45:52 -0700 2009 First commit [railsdog]
file README.markdown Sat Oct 03 12:45:52 -0700 2009 First commit [railsdog]
file Rakefile Sat Oct 03 12:45:52 -0700 2009 First commit [railsdog]
directory config/ Thu Oct 15 07:29:09 -0700 2009 Fixed compass gem dependency [Sean Schofield]
directory db/ Sat Oct 03 12:45:52 -0700 2009 First commit [railsdog]
directory public/ Thu Oct 15 07:27:39 -0700 2009 Updated to Spree 0.9.1 [Sean Schofield]
directory script/ Sat Oct 03 12:45:52 -0700 2009 First commit [railsdog]
directory vendor/ Sat Oct 03 12:45:52 -0700 2009 First commit [railsdog]
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.