Skip to content

Latest commit

 

History

History
36 lines (35 loc) · 721 Bytes

README.md

File metadata and controls

36 lines (35 loc) · 721 Bytes

TECLIX-backend

Deployed url

https://teclix.herokuapp.com/

Guide

clone the repository using the HTTPS link

Environment setup

$ 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 

Testing

To run tests

$ coverage run manage.py test 

To genarate test report

$ coverage report 

To genarate test report in HTML format

$ coverage html