Skip to content

Latest commit

 

History

History
62 lines (47 loc) · 1.18 KB

README.md

File metadata and controls

62 lines (47 loc) · 1.18 KB

BestBarber

Group 8C - BestBarber Project Web App Development

Installation

I recommend you to use Visual Studio Code.

Windows

  1. Clone this repo.
  2. Use a terminal inside VSCode: Create a virtual environment using
python virtualenv venv 

# Check if you have venv folder after you type this command.
# If you do, it means that it worked
  1. Activate your virtual environment
cd venv && Scripts/activate
  1. Check if your terminal has this prefix: (venv) If so, it worked.

  2. Install required packages using:

pip install -r requirements.txt
  1. Now check if you can run the project.
python manage.py runserver

Mac

  1. Clone this repo.
  2. Use a terminal inside VSCode: Create a virtual environment using
virtualenv venv 

# Check if you have venv folder after you type this command.
# If you do, it means that it worked
  1. Activate your virtual environment
cd venv
source bin/activate 
  1. Check if your terminal has this prefix: (venv) If so, it worked.

  2. Install required packages using:

pip install -r requirements.txt
  1. Now check if you can run the project.
python manage.py runserver