Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions guides/deploy/microservices.md
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ npm i @cap-js/hana --workspace reviews

### Applications

Replace the MTA module for `samples-srv` with versions for each CAP service and adjust `name`, `path`, and `provides[0].name` to match the module name. Also change the `npm-ci` builder to the `npm` builder.
Replace the MTA module for `samples-srv` with versions for each CAP service and adjust `name`, `path`, and `provides[0].name` to match the module name.

::: code-group
```yaml [mta.yaml]
Expand All @@ -296,7 +296,7 @@ modules:
instances: 1
buildpack: nodejs_buildpack
build-parameters:
builder: npm # [!code focus]
builder: npm-ci # [!code focus]
provides: # [!code focus]
- name: bookstore-api # [!code focus]
properties:
Expand All @@ -314,7 +314,7 @@ modules:
instances: 1
buildpack: nodejs_buildpack
build-parameters:
builder: npm # [!code focus]
builder: npm-ci # [!code focus]
provides: # [!code focus]
- name: orders-api # [!code focus]
properties:
Expand All @@ -332,7 +332,7 @@ modules:
instances: 1
buildpack: nodejs_buildpack
build-parameters:
builder: npm # [!code focus]
builder: npm-ci # [!code focus]
provides: # [!code focus]
- name: reviews-api # [!code focus]
properties:
Expand Down
Loading