Matchmaker
Site Address
https://t1matchmaker.ml/
How to run
Frontend
yarn installfyarn start
Backend
pip install -r requirements.txtoryarn installbpython manage.py runserveroryarn back
How to test
Frontend
Unit Test
Used Enzyme for frontend testing
yarn testf
Lint Check
Used Eslint with eslint-config-airbnb
eslint srcoryarn lintf
Backend
Unit Test
Used Pytest and Coverage
coverage run --branch --source="." -m pytest-
coverage report --fail-under=80 -mOr just type
yarn testb
Lint Check
Used Pylint
pylint ./*/oryarn lintb