./start-front.sh
cd frontend/naengpa
yarn
yarn start
cd frontend/naengpa
yarn
yarn test
./start-back.sh
cd backend/naengpa
pip install -r requirements.txt
python manage.py makemigrations
python manage.py migrate
python manage.py runserver
./test-back.sh
cd backend/naengpa
pip install -r requirements.txt
python manage.py makemigrations
python manage.py migrate
coverage run --source='.' --omit=*/migrations/*,manage.py,naengpa/*,utils/* manage.py test && coverage report
coverage run --branch --source='.' --omit=*/migrations/*,manage.py,naengpa/*,utils/* manage.py test && coverage report