Skip to content

Latest commit

 

History

History
37 lines (27 loc) · 588 Bytes

README.md

File metadata and controls

37 lines (27 loc) · 588 Bytes

love-letter

A card game written in FastAPI and React

Setup

Make sure you have Docker and Docker Compose installed.

Then type command

docker-compose build

Run project

To run the project, type

docker-compose up

Run tests on backend

Make sure you have installed PyTest.

To run tests on the backend, being on project root directory, type

python3 -m pytest

To run coverage tests, after installing coverage package and being on project root directory, type

coverage run -m pytest

Ports:

  • frontend: 3000
  • backend: 8000