Skip to content

Latest commit

 

History

History
21 lines (17 loc) · 832 Bytes

File metadata and controls

21 lines (17 loc) · 832 Bytes

Requirements:

Steps before you start:

  • Clone repository.
  • cd DBMS-multi-cloud
  • Setup your virtualenv
    • virtualenv env --python=python3.9
  • Activate virtualenv
    • windows: \env\bin\activate.bat
    • other: source env/bin/activate This step is very important. This sets up your session in a virtual environment. You must activate virtualenv everytime you start working. This will help in maintaining and syncing any external libraries dependency of our project with other team members.
  • Install dependencies.
    • pip install -r requirements.txt

Notes

  • All code must be placed under src directory.