clone the repository using the HTTPS link
$ python -m virtualenv teclixenv
$ source teclixenv/Scripts/activate
After the environment is created and activated, install the necessary dependencies using the requirements.txt file.
$ pip install -r requirements.txt
To run the project.
$ python manage.py runserver
To reset the database.
$ python manage.py reset_db
To run tests
$ coverage run manage.py test
To genarate test report
$ coverage report
To genarate test report in HTML format
$ coverage html