Ecommerceapp is a open source ecommerce solution for Ruby on Rails. It was developed by satish at vinsol
-
Clone the git repo
git clone git://github.com/Satish/test_ec.git After cloning a fresh copy of the repository, run the following commands. git submodule init git submodule update
-
Create the necessary config/database.yml file
defaults: &defaults adapter: mysql encoding: utf8 username: root password : root host: localhost development: database: ecommerceapp_development <<: *defaults test: database: ecommerceapp_test <<: *defaults production: database: ecommerceapp_production <<: *defaults
-
Bootstrap the database (run the migrations, create database)
rake db:create rake db:migrate rake db:rebuild OR rake db:bootstrap
-
Start the server
script/server
login : login1
password : changeme