A full-featured e-commerce platform built with Django.
- User Authentication: Registration, login, and profile management
- Product Catalog: Categories, filters, and search functionality
- Shopping Cart: Session-based cart system
- Order Management: Purchase history and order tracking
- Admin Dashboard: Complete backend administration
- Python 3.12
- Django 5.2
- PostgreSQL (recommended) or SQLite3
`bash
git clone https://github.com/amirhosssein0/Django-Project.git cd Django-Project
python -m venv venv
source venv/bin/activate # On Windows use venv\Scripts\activate
pip install -r requirements.txt
cp .env.example .env
python manage.py migrate
python manage.py createsuperuser
python manage.py runserver