Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 628 Bytes

README.md

File metadata and controls

19 lines (15 loc) · 628 Bytes

Getting started

  • Clone the repo
  • Setup your virtual environment

required python version 3.6 and above

pip install virtualenv
virtualenv mypython

Activate: source mypython/bin/activate
Deactivate: deactivate readmore

  • Install required libraries
    pip install -r requirements.txt

  • Create a local.py file in hardwareManager/settings and paste local.py.template with your credentials in it.

  • Apply migrations python manage.py migrate

  • Runserver python manage.py runserver