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