ChazeFashion is a fully responsive e-commerce web application built using Django, TailwindCSS, and DaisyUI. The platform enables users to browse products, manage their cart and wishlist, and complete orders with a clean, modern UI.
- 🛒 Add to Cart, Remove, and Update Quantity
- ❤️ Add/Remove items from Wishlist
- 🧾 Checkout with Cart Summary
- 🔐 User Authentication (Login/Register)
- 🌐 Clean UI using TailwindCSS & DaisyUI
- 🧠 Dynamic product loading from
products.json
```bash
ChazeFashion/
├── ProductCatlog/
│ ├── __init__.py
│ ├── settings.py
│ ├── urls.py <-- Main URLs
│ └── wsgi.py
├── base/
│ ├── views.py <-- Cart, Wishlist, Auth, Orders
│ ├── models.py
│ ├── templates/
│ │ ├── base.html <-- Layout template
│ │ ├── cart.html <-- Cart page
│ │ └── other templates...
│ ├── static/
│ │ └── css, js <-- TailwindCSS, custom JS
├── data/
│ └── products.json <-- Sample product data
├── manage.py
└── README.md
- Backend: Django (Python)
- Frontend: TailwindCSS, DaisyUI
- Database: SQLite (Default)
- Auth: Django's built-in authentication
```bash
git clone https://github.com/your-username/ChazeFashion.git
cd ChazeFashion
```bash
python -m venv env
source env/bin/activate # Windows: env\Scripts\activate
```bash
pip install -r requirements.txt
```bash
python manage.py migrate
Ensure products.json is read in your view to populate products.
```bash
python manage.py runserver