Skip to content

Commit 5cadf21

Browse files
Jaime Salas ZancadaJaime Salas Zancada
authored andcommitted
updated README.md
1 parent d432614 commit 5cadf21

File tree

2 files changed

+28
-2
lines changed

2 files changed

+28
-2
lines changed

02-orquestacion/exercises/00-monolith-in-mem/README.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,20 @@
22

33
## Run solution locally
44

5-
First we need to install dependencies change directory to `todo-app/frontend` and run `npm install`, then change directory to `/todo-app` and run `npm install`. Once that all dependencies are installed, we can run the solution locally by changing directory to `todo-app/frontend` and running `npm run run-p -l start:server start:dev`.
5+
First we need to install dependencies change directory to `todo-app/frontend` and run `npm install`, then change directory to `/todo-app` and run `npm install`. Once that all dependencies are installed, we can run the solution locally by changing directory to `todo-app/frontend` and running `npm run start:dev:server`.
6+
7+
```bash
8+
# 1. Install frontend dependencies
9+
cd ./todo-app/frontend
10+
npm install
11+
12+
# 2. Install backend dependencies
13+
cd ../
14+
mpm install
15+
16+
# 3. To start solution run the following command
17+
npm run start:dev:server
18+
```
619

720
## Environment Variables
821

02-orquestacion/exercises/01-monolith/README.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,17 @@ DB_VERSION=10.4
3333

3434
### Running Applications
3535

36-
First we need to install dependencies change directory to `todo-app/frontend` and run `npm install`, then change directory to `/todo-app` and run `npm install`. Once that all dependencies are installed, we can run the solution locally by changing directory to `todo-app/frontend` and running `npm run run-p -l start:server start:dev`.
36+
First we need to install dependencies change directory to `todo-app/frontend` and run `npm install`, then change directory to `/todo-app` and run `npm install`. Once that all dependencies are installed, we can run the solution locally by changing directory to `todo-app/frontend` and running `npm run start:dev:server`.
37+
38+
```bash
39+
# 1. Install frontend dependencies
40+
cd ./todo-app/frontend
41+
npm install
42+
43+
# 2. Install backend dependencies
44+
cd ../
45+
mpm install
46+
47+
# 3. To start solution run the following command
48+
npm run start:dev:server
49+
```

0 commit comments

Comments
 (0)