public
Fork of schof/spree
Description: Spree is a complete open source commerce solution for Ruby on Rails.
Homepage: http://spreehq.org
Clone URL: git://github.com/captproton/spree.git
spree /
name age message
file .gitignore Mon Mar 31 16:20:41 -0700 2008 Images were showing in arbitrary order with psq... [schof]
file License.txt Tue Apr 08 15:54:23 -0700 2008 restored sample images [schof]
file README.txt Thu Mar 20 13:53:16 -0700 2008 Added a meaningful README file [#14] [schof]
file Rakefile Tue Apr 08 12:51:05 -0700 2008 first step in removing engines dependency - sta... [schof]
directory app/ Wed Apr 09 17:12:34 -0700 2008 removed problematic require statement [schof]
directory config/ Tue Apr 08 12:51:05 -0700 2008 first step in removing engines dependency - sta... [schof]
directory db/ Tue Apr 08 18:39:14 -0700 2008 rails now starting up ok after reorg [schof]
directory gem-refactor/ Tue Apr 08 15:54:23 -0700 2008 restored sample images [schof]
directory lib/ Wed Apr 09 16:59:12 -0700 2008 moved location of lib files to correspond to th... [schof]
directory log/ Tue Apr 08 15:54:23 -0700 2008 restored sample images [schof]
directory public/ Tue Apr 08 20:12:32 -0700 2008 mino stylesheet tweak [schof]
directory script/ Tue Apr 08 12:51:05 -0700 2008 first step in removing engines dependency - sta... [schof]
directory spec/ Tue Apr 08 13:03:01 -0700 2008 additional refactoring related to engines move [schof]
directory stories/ Tue Apr 08 13:03:01 -0700 2008 additional refactoring related to engines move [schof]
directory vendor/ Tue Apr 08 18:39:14 -0700 2008 rails now starting up ok after reorg [schof]
README.txt
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
===========

1.) Install spree Gem

$ sudo gem install spree

2.) Create Spree Application

$ spree app_name

3.) Create MySQL Database

mysql> create database spree_dev;
mysql> grant all privileges on spree_dev.* to 'spree'@'localhost' identified by 'spree';
mysql> flush privileges;

4.) Migrations

$ cd app_name
$ rake db:migrate

5.) Bootstrap

Spree requires an admin user and a few other pieces of structural data to be loaded into your database.

rake spree:bootstrap

6.) Sample Data (Optional)

Optionally load some sample data so you have something to look at.

rake spree:sample_data

7.) Launch Application

Browse Store

http://localhost:xxxx/store

Admin Interface (user: admin password: test)

http://localhost:xxxx/admin