For running the project locally you can use Docker and Docker Compose. But first it is needed to generate custom certificates for the client and server.
Run the command below to generate the server certificate:
openssl req -newkey rsa:4096 -x509 -sha256 -nodes -out cert/backend/cert.pem -keyout cert/backend/key.pemAnd to generate the client certificate:
openssl req -newkey rsa:4096 -x509 -sha256 -nodes -out cert/frontend/cert.pem -keyout cert/frontend/key.pemRun Docker Compose:
docker-compose upTo open the application just open the browser on page localhost:5000