Skip to content
Closed
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
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ For SPAs that run completely on the browser, Choreo does not support *baking-in*
</head>
<body>
<div id="root"></div>
<script src="%PUBLIC_URL%/config.js"></script>
<script src="./public/config.js"></script>
</body>
</html>
```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ To connect to a selected service, follow the step-by-step instructions given bel
</head>
<body>
<div id="root"></div>
<script src="/public/config.js"></script>
<script src="./public/config.js"></script>
</body>
</html>
```
Expand Down Expand Up @@ -104,7 +104,7 @@ To connect to a selected service, follow the step-by-step instructions given bel
</head>
<body>
<div id="root"></div>
<script src="/public/config.js"></script>
<script src="./public/config.js"></script>
</body>
</html>
```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -230,8 +230,8 @@ A connection allows you to integrate the service with other services or external
};
```

!!! tip
You can refer to the configuration file mounted at `/app/public` as `./public/config.js` within your web application.
!!! note
You must refer to the configuration file mounted at `/app/public` as `./public/config.js` within your web application.

4. Click **Next** to open the **Authentication** pane.
5. Under **Authentication Settings**, ensure that **Managed authentication with Choreo** is enabled.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -145,8 +145,8 @@ To configure the front-end application:
| **asgardeoBaseUrl** | The IdP API URL with your organization name (e.g., `https://api.asgardeo.io/t/<ORG_NAME>`). |
| **choreoApiUrl** | The **Reading List Service** URL from the endpoint table in the overview page. |

!!! tip
You can refer to the mounted configuration file as `./public/config.js` within your web application.
!!! note
You must refer to the mounted configuration file as `./public/config.js` within your web application.

5. Click **Deploy**.
6. Once deployed, copy the **Web App URL** from the development environment card.
Expand Down