Skip to content

Latest commit

 

History

History
14 lines (8 loc) · 636 Bytes

File metadata and controls

14 lines (8 loc) · 636 Bytes

Mentorship backend

Mentorship backend repository

Setup Steps

  1. Create a virtualenv named venv in the existing repository by the command virtualenv venv --python=python3 this will use python3 as the default python version for the environment. Activate the virtual environment using source venv/bin/activate.

  2. Install the project requirements using the command pip3 install -r requirements.txt

  3. Run the Django server using python manage.py runserver

  4. If you are contributing to the repo, verify your changes by the Django Admin Panel.

  5. Deactivate the virtual environment venv with the command deactivate.