Sha256: b8f43876475113a4b244875fe93fe0b95461187a5338f35ebf7223639bb762e7

Contents?: true

Size: 1.4 KB

Versions: 6

Compression:

Stored size: 1.4 KB

Contents

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](http://spreecommerce.com) to learn more about spree.

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
spree-0.8.4 README.markdown
spree-0.8.5 README.markdown
spree-0.8.0 README.markdown
spree-0.8.1 README.markdown
spree-0.8.2 README.markdown
spree-0.8.3 README.markdown