Skip to content

Latest commit

 

History

History
42 lines (29 loc) · 882 Bytes

README.md

File metadata and controls

42 lines (29 loc) · 882 Bytes

Build Status Quality Gate Status Coverage Status

Pitapat Campus

Frontend

Run

cd frontend
yarn
yarn start

Test

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

Backend

Run

  • redis-server required
cd backend
pip install -r requirements.txt
python manage.py runserver

Test

cd backend
coverage run --source='./pitapat' manage.py test