Django DRF E-Commerce Project

Coding Steps

  1. Create a virtual environment

    python -m venv venv
    
  2. Activate the virtual environment

    source venv/bin/activate
    
  3. Install the django framework library

    pip install django
    
  4. Starting new django project, go inside the project folder and run the server

    django-admin startproject drfecommerce
    cd drfecommerce/
    python manage.py runserver
    
  5. Create and register a new Django application

    python manage.py startapp product