A card game written in FastAPI and React
Make sure you have Docker and Docker Compose installed.
Then type command
docker-compose build
To run the project, type
docker-compose up
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