Skip to content

Latest commit

 

History

History
66 lines (47 loc) · 2.65 KB

README.md

File metadata and controls

66 lines (47 loc) · 2.65 KB

FashionStore - Elevate Your Style with FashionStore!

1. Introduction

Fashion Store is a Full Stack ECommerce App Built with Reactjs, Nodejs, Express and MongoDB (MERN Stack)

2. Features

Customer:

  • Browse all products
  • Browse products by category
  • Search for a specific product
  • Add products to a shopping cart and checkout
  • Check order status
  • Create an account to save their personal data (this is optional for the user in case they decide to purchase anything

Admin:

  • Add/remove/modify categories of products
  • add/remove/modify products
  • search for a customer information and view
  • Their past orders
  • Modify a pending order of a customer
  • Modify the status of the order (pending/completed/ready for shipment/shipped)
  • Check statistics of sales by category and by
  • Product (last week, last month, all time, etc)

3. Tech Stack

Tech Stack used to develop FashionStore:

React  js Bootstrap MongoDB ExpressJS Nodejs

3. Screenshots

Home Page

fs_1

Product Details

fs_2 fs_3

Orders Page

fs_4

Tracking Page

fs_5 fs_6

4. Setup Locally

Clone the repo git clone https://github.com/Ayush-Bulbule/FashionStore/

Frontend:

  1. Open Project in Terminal cd frontend
  2. Install Dependencies npm install --legacy-peer-deps
  3. Run frontend npm run dev
  4. Frontend will be running on localhost:3000
  5. Admin is accessible at localhost:3000/admin/manage

Backend

  1. Open Project in Terminal cd backend
  2. Install Dependencies npm insrtall
  3. Add Database URL open server.js and change mongodb url
  4. Run Backend npm run dev