Skip to content

swsnu/swpp2020-team1

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

swpp2020-team1

Build Status Quality Gate Status Coverage Status

Foodify, an all-in-one refrigerator management service

Frontend

Run

cd frontend
yarn install
yarn start

Test

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

Backend

Run

cd backend
python manage.py makemigrations
python manage.py migrate
python manage.py runserver 

Test

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