22 lines
345 B
Markdown
22 lines
345 B
Markdown
# Reviews Service Sample
|
|
|
|
## Run all-in-one
|
|
|
|
Open a terminal window and run the bookshop in it:
|
|
```sh
|
|
npm run bookshop
|
|
```
|
|
|
|
|
|
## Run as separate services
|
|
|
|
Open two terminal windows, and in the first one start the reviews service stand-alone:
|
|
```sh
|
|
npm run reviews-service
|
|
```
|
|
|
|
In the the second one start the bookshop:
|
|
```sh
|
|
npm run bookshop
|
|
```
|