Skip to content

Ankit0225/Shopping-Cart

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Prepare DB

  • Login in into Your Database

  • mysql -u root -p;

    Enter Passowrd: (Your Default Mysql Password)

create database shopping_cart_db;

create user owner identified by 'shopping';

use shopping_cart_db;
grant all privileges on shopping_cart_db to owner; 
grant all privileges on shopping_cart_db.* to owner; 

Libraries and Frameworks Used:

Frontend

BootStrap
Jquery

Backend

Sequelize
Express
MySQL
SQLite (optional)