Skip to content

Latest commit

 

History

History
54 lines (35 loc) · 1.52 KB

README.md

File metadata and controls

54 lines (35 loc) · 1.52 KB

E-commerce Website by Dennis Ivy

Build a full e-commerce website.

  • With Payment Integration
  • Ability to user shop as guest or registered user (Without creating an account /never have to register or create an account and shop as a authenticated user)

Features:

  • Add items to cart.
  • Edit cart (Add/ Remove items).
  • On checkout, Add shipping details and then after payment is done you will be redirected to Home page.

Shipping address and payment method can be saved for guest users for long time.

Techs Used:

Further it can be implemented with: React.js, REST API (Django Rest Framework) and Docker or Postgres for database.

Project Guide: docs

Setup

  1. Clone, Create Env, Install requirements and run server.
# Clone the repository
git clone

# Create virtual environment
python -m venv env

# Activate the environment
.\env\Scripts\activate

# Install requirements
pip install -r requirements.txt

# Run server
python manage.py runserver

References