https://github.com/dharmender12/smartshop
SmartShop is a Django-powered e-commerce platform for SMBs, offering secure and scalable online shopping with product management, cart & checkout, order tracking, role-based access, and an admin dashboard.
https://github.com/dharmender12/smartshop
ajax css3 django-framework html5 javascript python sqlite3
Last synced: 7 months ago
JSON representation
SmartShop is a Django-powered e-commerce platform for SMBs, offering secure and scalable online shopping with product management, cart & checkout, order tracking, role-based access, and an admin dashboard.
- Host: GitHub
- URL: https://github.com/dharmender12/smartshop
- Owner: dharmender12
- Created: 2025-07-09T17:25:44.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2025-09-05T16:37:32.000Z (7 months ago)
- Last Synced: 2025-09-05T18:39:16.598Z (7 months ago)
- Topics: ajax, css3, django-framework, html5, javascript, python, sqlite3
- Language: HTML
- Homepage:
- Size: 17.3 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ๐๏ธ SmartShop โ An Online Shopping Platform
**SmartShop** is a Django-powered e-commerce web application designed to empower small and medium-sized businesses (SMBs) with a secure, scalable, and user-friendly online store. It offers robust features for product management, order tracking, and customer interaction, all wrapped in a responsive and intuitive interface.
---
## ๐ Table of Contents
* [Demo Screenshots](#-demo-screenshots)
* [Key Features](#-key-features)
* [Technologies Used](#-technologies-used)
* [Project Objectives](#-project-objectives)
* [System Architecture](#-system-architecture)
* [Installation](#-installation)
* [Usage](#-usage)
* [Screenshots](#-screenshots)
* [Future Enhancements](#-future-enhancements)
* [License](#-license)
---
## ๐ธ Demo Screenshots
Screenshots of the user interface, admin panel, and shopping flow are available in the `/screenshots/` folder or embedded below.
### ๐ Home Page

### ๐ Checkout Page

---
## ๐ Key Features
* ๐ญ **User-friendly Navigation** with categories and filters
* ๐ **Cart Management** with real-time updates
* ๐ **Secure User Authentication** using Django's auth system
* ๐ณ **Payment Integration** with PayPal (mocked for demo)
* ๐ฆ **Order Tracking** with status updates
* ๐ **Admin Dashboard** for product, order, and user management
* ๐ **Reports and Analytics** for decision-making
* ๐ฌ **Role-Based Access Control** for Admins, Customers, and Suppliers
---
## ๐งฐ Technologies Used
| Layer | Stack |
| --------------- | ---------------------------------- |
| Frontend | HTML5, CSS3, Bootstrap, JavaScript |
| Backend | Python 3, Django |
| Database | SQLite (dev) / PostgreSQL (prod) |
| Version Control | Git, GitHub |
| Deployment | Heroku / AWS / PythonAnywhere |
| Testing | Selenium, Postman |
---
## ๐ฏ Project Objectives
1. Provide a seamless shopping experience to customers.
2. Empower SMBs with low-cost, customizable online platforms.
3. Offer secure and scalable architecture.
4. Enable real-time product and order management.
5. Support integration with payment gateways and logistics APIs.
---
## ๐งฑ System Architecture
SmartShop follows the **Model-View-Controller (MVC)** pattern:
* **Model**: Defines the database structure and business entities.
* **View**: Controls the UI using Django Templates and Bootstrap.
* **Controller**: Handles business logic, form validation, and routing.
It supports three main user roles:
* **Admin**: Full control over products, users, and orders.
* **Customer**: Browse products, manage cart, place and track orders.
* **Supplier**: Optional role to manage inventory.
---
## โ๏ธ Installation
### Prerequisites
* Python 3.8+
* Git
* Virtualenv (recommended)
### Setup Instructions
```bash
# Clone the repo
git clone https://github.com/dharmender12/Smartshop.git
cd Smartshop
# Create virtual environment
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
# Install dependencies
pip install -r requirements.txt
# Run migrations
python manage.py makemigrations
python manage.py migrate
# Create superuser for admin access
python manage.py createsuperuser
# Start the server
python manage.py runserver
```
Then open your browser and go to: [http://127.0.0.1:8000](http://127.0.0.1:8000)
---
## ๐งช Usage
### Admin
* Login via `/admin`
* Add/edit/delete products
* Manage users and orders
### Customer
* Register or login
* Browse and search products
* Add items to cart and place orders
* Track past and current orders
### Supplier (optional)
* Manage product stock and availability
---
## ๐ผ๏ธ Screenshots
See the [Demo Screenshots](#-demo-screenshots) section above for UI visuals.
---
## ๐ง Future Enhancements
* Integrate real payment gateways (Razorpay, Stripe, etc.)
* SMS and email order notifications
* AI-based product recommendations
* Order cancellation and return system
* Progressive Web App (PWA) version
* Invoice generation and download
---
## ๐ License
This project was developed by [Dharmender](https://github.com/dharmender12) as part of the NIELIT 'A' Level course.
Feel free to fork or adapt it for learning and development purposes. Attribution appreciated.