A Django web app that displays products from the FakeStoreAPI. It features a responsive Bootstrap interface with filtering, search, and dynamic product listings.
- 💡 Fetches real-time data from FakeStoreAPI
- 🔍 Search and category filter
- ⚙️ Django-powered backend
- 🎨 Styled with Bootstrap 5
- 📱 Mobile-friendly layout
🔗 Live Demo: Click Here
fakestore/
│
├── fakestore/ # Django project settings
│ └── **pycache**/
│
├── store/ # Main Django app
│ ├── migrations/
│ ├── templates/
│ │ └── store/
│ └── **pycache**/
│
├── manage.py
├── requirements.txt
└── README.md
git clone https://github.com/Dhananjay66/FakeStore.git
cd FakeStorepython -m venv env
source env/bin/activate # Windows: env\Scripts\activatepip install -r requirements.txtpython manage.py migratepython manage.py runserverVisit: http://localhost:8000
Django>=4.0,<5.0
requestsYou can generate or update this file anytime with:
pip freeze > requirements.txtPowered by:
MIT License. Open for learning, contribution, or customization.
Dhananjay 🔗 github.com/Dhananjay66