no changes added to commit (use "git add" and/or "git commit -a")
```
### Step 6) Install web-vitals package
```bash
docker run -it--rm-v$(pwd)/react-frontend/my-react-app:/app -w /app node:16 npm install web-vitals --save
```
Continue with "Starting after cloning this repository".
## Starting after cloning this repository
For starting with cloning this repository.
Potential steps in the case of problems:
```bash
docker pull node:16 # pull the node image
docker run -it--rm-v$(pwd)/react-frontend/my-react-app:/app -w /app node:16 bash # run and access node container with map of local my-react-app dir to app dir
```
Inside the node container run,
```bash
npm intall # install all packages in package.json
```
### Step 1) Start all services
Step 1.1) Start all services with rebuilded images
```bash
docker-compose up --build
```
```bash
Compiled successfully!
react-frontend_1 |
react-frontend_1 | You can now view app in the browser.
react-frontend_1 |
react-frontend_1 | Local: http://localhost:3000
react-frontend_1 | On Your Network: http://172.18.0.3:3000
react-frontend_1 |
react-frontend_1 | Note that the development build is not optimized.
react-frontend_1 | To create a production build, use npm run build.
react-frontend_1 |
react-frontend_1 | webpack compiled successfully
```
Step 1.2) Potentially restart tornado-bakend service in a new terminal