forked from spree/spree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.txt
49 lines (27 loc) · 952 Bytes
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
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