A simple shopping website built with Django, designed for practicing backend development and basic frontend integration.
- Product listing with name, price, stock, and image URL
- Basic discount offers management
- Homepage and product list pages
- Django admin panel to manage products and offers
- Responsive UI built with Bootstrap 5
- Python 3.X+
- Django 4.X+
- SQLite (default database)
- Clone the repository
git clone https://github.com/mix130913865-W/PyShop.git cd PyShop
- Create and activate a virtual environment
python -m venv venv
source venv/bin/activate
venv\Scripts\activate
- Install dependencies
pip install -r requirements.txt
- Run database migrations
python manage.py migrate
- Start the development server
python manage.py runserver