Skip to content

Latest commit

 

History

History
45 lines (38 loc) · 964 Bytes

File metadata and controls

45 lines (38 loc) · 964 Bytes

Django eCommerce Website

Basic Django eCommerce website with guest checkout and PayPal integration.

Tutorial Reference

This project is part of the tutorial video: https://youtu.be/_ELCMngbM0E?si=H7fSY5JRmwoR-V21

Setup

  1. Clone this repo:
    git clone <repo_url>
    cd django_ecommerce_mod5
  2. Create and activate a virtual environment (recommended):
    python -m venv .venv
    source .venv/bin/activate
    On Windows:
    .venv\Scripts\activate
  3. Install dependencies:
    pip install -r requirements.txt
  4. Apply database migrations:
    python manage.py migrate
  5. (Optional) Create an admin user:
    python manage.py createsuperuser
  6. Run the server:
    python manage.py runserver
  7. Visit the app at http://127.0.0.1:8000/

Screenshot

Django eCommerce demo screenshot