- 레포지토리 클론
- 가상환경 생성
- 패키지 설치
pip install -r requirements.txt- 도커 설치
- DB 설치:
docker run --name postgres-local -e POSTGRES_PASSWORD=postgres -e POSTGRES_USER=postgres -e POSTGRES_DB=qrcode -p 5432:5432 -d postgres:latest
- run integration tests:
python test/run_integration_tests.py
- cypress 설치:
npm install cypress --save-dev
- django 서버를 실행한다.(
python manage.py runserver) - cypress 실행한다.
npx cypress open