Skip to content

Latest commit

 

History

History
32 lines (26 loc) · 531 Bytes

README.md

File metadata and controls

32 lines (26 loc) · 531 Bytes

to start working on the project

  • clone this repository using git
git clone <repository-link>
  • start a new branch using
git checkout -b <branch-name>
  • initialize the environment if using gitbash
py -m venv venv
. venv/Scripts/activate

if using cmd

py -m venv venv
venv/Scripts/activate.bat

you should see (venv) at the start of the command line

  • install the dependencies
pip install -r requirements.txt
  • always commit to and start a pull request