Skip to content
Open
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ To review Cosmos DB configuration overview and steps, follow the link [here](doc
![Solution Architecture - Chat with your data CosmosDB](/docs/images/architecture_cdb.png)

### Deploy instructions
The "Deploy to Azure" button offers a one-click deployment where you don’t have to clone the code. If you would like a developer experience instead, follow the [local deployment instructions](./docs/LOCAL_DEPLOYMENT.md).
The "Deploy to Azure" button offers a one-click deployment where you don’t have to clone the code. If you would like a developer experience instead, follow the [local deployment instructions](./docs/LOCAL_DEPLOYMENT-Test.md).

Once you deploy to Azure, you will have the option to select PostgreSQL or Cosmos DB, see screenshot below.

Expand Down
2 changes: 1 addition & 1 deletion code/frontend/src/pages/NoPage.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const NoPage = () => {
return <h1>404</h1>;
return <h1>404 Page Not Found</h1>;
};

export default NoPage;
2 changes: 1 addition & 1 deletion docs/LOCAL_DEPLOYMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ Execute the above [shell command](#L81) to run the function locally. You may nee

## Bicep

A [Bicep file](./infra/main.bicep) is used to generate the [ARM template](./infra/main.json). You can deploy this accelerator by the following command if you do not want to use `azd`.
A [Bicep file](../infra/main.bicep) is used to generate the [ARM template](./infra/main.json). You can deploy this accelerator by the following command if you do not want to use `azd`.

```sh
az deployment sub create --template-file ./infra/main.bicep --subscription {your_azure_subscription_id} --location {search_location}
Expand Down
Loading