This guide will walk you through the process of setting up a development environment for the Dropship V2 project.
- Python 3.9 or higher
- Django 3.2 or higher
- Virtual environment (recommended)
-
Clone the repository:
git clone https://github.com/CrzyHAX91/dropshipv2.git cd dropshipv2
-
Create a virtual environment:
python -m venv new_venv
-
Activate the virtual environment:
-
On Windows:
new_venv\Scripts\activate
-
On macOS/Linux:
source new_venv/bin/activate
-
-
Install the required packages:
pip install -r requirements.txt
-
Run the migrations:
python manage.py migrate
-
Start the development server:
python manage.py runserver
For more details, refer to the documentation in the repository.