Skip to content

Latest commit

 

History

History
40 lines (30 loc) · 910 Bytes

README.md

File metadata and controls

40 lines (30 loc) · 910 Bytes

NowSee

Build Status Coverage Status Quality Gate Status

Frontend

cd frontend
yarn
yarn start

Frontend Test

cd frontend
yarn
yarn test --coverage --watchAll=false

Backend

cd backend
pip install -r requirements.txt
python manage.py migrate
python manage.py runserver

Backend Test

cd backend
pip install -r requirements.txt
coverage run --source='.' manage.py test
coverage report