Skip to content

Latest commit

 

History

History
59 lines (39 loc) · 1.02 KB

SETUP.md

File metadata and controls

59 lines (39 loc) · 1.02 KB

Setting Up the Development Environment for Dropship V2

This guide will walk you through the process of setting up a development environment for the Dropship V2 project.

Prerequisites

  • Python 3.9 or higher
  • Django 3.2 or higher
  • Virtual environment (recommended)

Installation Steps

  1. Clone the repository:

    git clone https://github.com/CrzyHAX91/dropshipv2.git
    cd dropshipv2
  2. Create a virtual environment:

    python -m venv new_venv
  3. Activate the virtual environment:

    • On Windows:

      new_venv\Scripts\activate
    • On macOS/Linux:

      source new_venv/bin/activate
  4. Install the required packages:

    pip install -r requirements.txt
  5. Run the migrations:

    python manage.py migrate
  6. Start the development server:

    python manage.py runserver

Additional Information

For more details, refer to the documentation in the repository.