Basic Django eCommerce website with guest checkout and PayPal integration.
This project is part of the tutorial video: https://youtu.be/_ELCMngbM0E?si=H7fSY5JRmwoR-V21
- Clone this repo:
git clone <repo_url> cd django_ecommerce_mod5
- Create and activate a virtual environment (recommended):
On Windows:
python -m venv .venv source .venv/bin/activate.venv\Scripts\activate
- Install dependencies:
pip install -r requirements.txt
- Apply database migrations:
python manage.py migrate
- (Optional) Create an admin user:
python manage.py createsuperuser
- Run the server:
python manage.py runserver
- Visit the app at http://127.0.0.1:8000/
