- Yarn 1.17.3 or above
- Python 3.8.5
- pip3 20.1.1
at root repositiory, type the following commands
cd frontend
yarn install
yarn start
at root repository, type the following commands
cd frontend
yarn install
yarn test --coverage --watchAll=false
at root repository, type the following commands
cd backend
python3 manage.py migrate
python3 manage.py runserver
at root repository, type the following commands
cd backend
export AWS_SECRET_KEY=<secret_key>
export AWS_SECRET_ACCESS_KEY=<secret_access_key>
export SETTINGS=prod
python3 manage.py migrate
python3 manage.py runserver
at root repository, type the following commands
cd backend
coverage run --source='.' manage.py test && coverage report
# statement coverage
coverage run --branch --source='.' manage.py test && coverage report
# branch coverage