Skip to content

swsnu/swppfall2022-team7

Repository files navigation

SPRINT

Build Status Quality Gate Status Coverage Status
SPRINT(Special Platform for Robust Integration) by Team 7
SNU SWPP fall 2022

Frontend

How to run frontend

Before typing the script below, you need to set secret environment variables on terminal. Download env.sh and type source env.sh.

> pwd
(swppfall2022-team7)/frontend
> cd sprint
> yarn install
> yarn start

Test

> cd frontend/sprint
> yarn test --coverage --watchAll=false

Backend

How to run backend

Before typing the script below, you need to set secret environment variables on terminal. Download env.sh and type source env.sh.

> pwd
(swppfall2022-team7)/backend
> pip install -r requirements.txt
> cd sprint
> python manage.py migrate
> python manage.py runserver

Test

  • test.sh : pylint & coverage test
> cd backend/sprint
> chmod +x test.sh
> ./test.sh