Skip to content
Merged
Show file tree
Hide file tree
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
12 changes: 6 additions & 6 deletions docs/site/Booting-an-Application.md
Original file line number Diff line number Diff line change
Expand Up @@ -257,12 +257,12 @@ The options for this are passed in a `services` object on `BootOptions`.

Available options on the `services` object on `BootOptions` are as follows:

| Options | Type | Default | Description |
| ------------ | -------------------- | -------------------- | ------------------------------------------------------------------------------------------------------------ |
| `dirs` | `string \| string[]` | `['repositories']` | Paths relative to projectRoot to look in for Service artifacts |
| `extensions` | `string \| string[]` | `['.repository.js']` | File extensions to match for Service artifacts |
| `nested` | `boolean` | `true` | Look in nested directories in `dirs` for Service artifacts |
| `glob` | `string` | | A `glob` pattern string. This takes precedence over above 3 options (which are used to make a glob pattern). |
| Options | Type | Default | Description |
| ------------ | -------------------- | ----------------- | ------------------------------------------------------------------------------------------------------------ |
| `dirs` | `string \| string[]` | `['services']` | Paths relative to projectRoot to look in for Service artifacts |
| `extensions` | `string \| string[]` | `['.service.js']` | File extensions to match for Service artifacts |
| `nested` | `boolean` | `true` | Look in nested directories in `dirs` for Service artifacts |
| `glob` | `string` | | A `glob` pattern string. This takes precedence over above 3 options (which are used to make a glob pattern). |
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you for cleaning up the mess I left after copy-and-paste 👍


### Custom Booters

Expand Down
10 changes: 0 additions & 10 deletions docs/site/todo-tutorial-geocoding-service.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,16 +34,6 @@ for example IBM's [Weather Company Data](https://console.bluemix.net/catalog/ser
or [Google Maps Platform](https://developers.google.com/maps/documentation/geocoding).
" %}

### Install `@loopback/service-proxy`

`@loopback/service-proxy` provides a common set of interfaces for interacting
with service oriented backends such as REST APIs, SOAP Web Services, and gRPC
microservices. Install it in your project by running the following command:

```
npm i @loopback/service-proxy
```

### Configure the backing datasource

Run `lb4 datasource` to define a new datasource connecting to Geocoder REST
Expand Down