Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 635 Bytes

File metadata and controls

33 lines (24 loc) · 635 Bytes

E-commerce Project

This is a full-stack e-commerce web application built with:

  • Frontend: React, Tailwind CSS
  • Backend: Java Spring Boot, PostgreSQL (or any DB)
  • Features:
    • Product listing with search and grid view
    • Shopping cart with add/remove and quantity controls
    • Total price summary
    • Responsive design
    • Routing with React Router

Project Structure

ecommerce-project/ ├── backend/ # Spring Boot backend ├── frontend/ # React frontend ├── .gitignore └── README.md

How to Run

Backend

cd backend
mvn spring-boot:run

cd frontend
npm install
npm start