Skip to content

Latest commit

 

History

History
62 lines (43 loc) · 1.4 KB

README.md

File metadata and controls

62 lines (43 loc) · 1.4 KB

ProbLoom

Team 13, SWPP Fall 2021

Build Status Quality Gate Status Coverage Status

Installation

Back-End

First, you should install poetry. Follow the instructions here.

cd swpp2021-team13/backend/probloom
poetry install -E ipython
poetry run python manage.py makemigrations
poetry run python manage.py migrate

Front-End

First, you should install yarn 1.x. Follow the instructions here.

cd swpp2021-team13/frontend/probloom
yarn

Testing (Optional)

Back-End

cd swpp2021-team13/backend/probloom
poetry run coverage run
poetry run coverage report -m

Front-End

cd swpp2021-team13/frontend/probloom
yarn test --coverage --watchAll=false

Running Development Server

Back-End

cd swpp2021-team13/backend/probloom
poetry run python manage.py runserver

Front-End

cd swpp2021-team13/frontend/probloom
yarn start