Skip to content

Satish/Ecommerce-App

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SUMMARY

Ecommerceapp is a open source ecommerce solution for Ruby on Rails. It was developed by satish at vinsol

QUICK START

Running from sources

  1. 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
    
  2. 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
    
  3. Bootstrap the database (run the migrations, create database)

     rake db:create
     rake db:migrate
     rake db:rebuild
    
     OR
    
     rake db:bootstrap
    
  4. Start the server

     script/server
    

Browse Store

http://localhost:xxxx/

Browse Admin Interface

http://localhost:xxxx/admin

    login     : login1
    password  : changeme

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published