Skip to content
Open
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
5 changes: 5 additions & 0 deletions docs-js/guides/bas-external-system.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,11 @@
}]"
```

Please keep in mind: A `.env` file has to represent environment-variables (like `destinations` in the example above) within 1 line. So, to get represented within your `process.env.destinations` variable, save the `.env` file as one-liner:

Check warning on line 184 in docs-js/guides/bas-external-system.mdx

View workflow job for this annotation

GitHub Actions / checks

[vale] reported by reviewdog 🐶 [SAP.So] Don't start a sentence with 'So,'. Raw Output: {"message": "[SAP.So] Don't start a sentence with 'So,'.", "location": {"path": "docs-js/guides/bas-external-system.mdx", "range": {"start": {"line": 184, "column": 133}}}, "severity": "WARNING"}

Check failure on line 184 in docs-js/guides/bas-external-system.mdx

View workflow job for this annotation

GitHub Actions / checks

[vale] reported by reviewdog 🐶 [SAP.Sentences] Each sentence should have its own line. Raw Output: {"message": "[SAP.Sentences] Each sentence should have its own line.", "location": {"path": "docs-js/guides/bas-external-system.mdx", "range": {"start": {"line": 184, "column": 127}}}, "severity": "ERROR"}
```
destinations="[{"name": "<destinationName>","url": "http://<destinationName>.dest","proxyConfiguration":{"host": "127.0.0.1","port": 8887,"protocol":"http"}}]"
```

Fill in the `name` and `url` of the destination you [configured on SAP BTP](#prerequisite-2-cloud-connector-and-destination-setup).
You can use the same pattern `<name>.dest` that you have used for [testing the connection](#checking-the-connection).
The proxy host and port are from the `http_proxy` environment variables BAS creates for you.
Expand Down
Loading