amaury1729/login-with-metamask-demo

There are 2 packages in this repo: which is a REST API written in Express, and a which is a React single-page application. It's really a demo, so I tried to use as few libraries as possible, and the most popular ones when The simplest way to get started is to launch the demo using Docker Compose. Alternatively you could launch docker the containers manually, or run the node services using yarn.1. Launch the demo using Docker Compose:docker-compose up -dThis will setup the listening on localhost:8000 and the frontend on localhost:3000.2. Launching the demo using  and launch the backendbackend
docker build -t login-backend .
docker run -d -p 8000:8000 login-backend Build and launch the frontend :cd frontend
docker build -t login-frontend .
docker run -d -p 3000:3000 login-frontendYou can then access the frontend app on localhost:3000.3