Skip to content

Commit 3b610a9

Browse files
updated readme link
1 parent b13907b commit 3b610a9

File tree

2 files changed

+27
-5
lines changed

2 files changed

+27
-5
lines changed

docs/DeploymentGuide.md

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ The easiest way to run this accelerator is in a VS Code Dev Containers, which wi
233233

234234
## Detailed Development Container setup instructions
235235

236-
The solution contains a [development container](https://code.visualstudio.com/docs/remote/containers) with all the required tooling to develop and deploy the accelerator. To deploy the Chat With Your Data accelerator using the provided development container you will also need:
236+
The solution contains a [development container](https://code.visualstudio.com/docs/remote/containers) with all the required tooling to develop and deploy the accelerator. To deploy the Multi-Agent solutions accelerator using the provided development container you will also need:
237237

238238
- [Visual Studio Code](https://code.visualstudio.com)
239239
- [Remote containers extension for Visual Studio Code](https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-containers)
@@ -301,7 +301,7 @@ The files for the dev container are located in `/.devcontainer/` folder.
301301
302302
**Role Assignments in Bicep Deployment:**
303303
304-
The **macae-dev.bicep** deployment includes the assignment of the appropriate roles to AOAI and Cosmos services. If you want to modify an existing implementation—for example, to use resources deployed as part of the simple deployment for local debugging—you will need to add your own credentials to access the Cosmos and AOAI services. You can add these permissions using the following commands:
304+
The **main.bicep** deployment includes the assignment of the appropriate roles to AOAI and Cosmos services. If you want to modify an existing implementation—for example, to use resources deployed as part of the simple deployment for local debugging—you will need to add your own credentials to access the Cosmos and AOAI services. You can add these permissions using the following commands:
305305
306306
```bash
307307
az cosmosdb sql role assignment create --resource-group <solution-accelerator-rg> --account-name <cosmos-db-account-name> --role-definition-name "Cosmos DB Built-in Data Contributor" --principal-id <aad-user-object-id> --scope /subscriptions/<subscription-id>/resourceGroups/<solution-accelerator-rg>/providers/Microsoft.DocumentDB/databaseAccounts/<cosmos-db-account-name>
@@ -342,8 +342,19 @@ The files for the dev container are located in `/.devcontainer/` folder.
342342
```bash
343343
pip install -r requirements.txt
344344
```
345+
346+
9. **Build the frontend (important):**
345347
346-
9. **Run the application:**
348+
- Before running the frontend server, you must build the frontend to generate the necessary `build/assets` directory.
349+
350+
From the `src/frontend` directory, run:
351+
352+
```bash
353+
npm install
354+
npm run build
355+
```
356+
357+
10. **Run the application:**
347358
348359
- From the src/backend directory:
349360

docs/LocalDeployment.md

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ The easiest way to run this accelerator is in a VS Code Dev Containers, which wi
2020

2121
## Detailed Development Container setup instructions
2222

23-
The solution contains a [development container](https://code.visualstudio.com/docs/remote/containers) with all the required tooling to develop and deploy the accelerator. To deploy the Chat With Your Data accelerator using the provided development container you will also need:
23+
The solution contains a [development container](https://code.visualstudio.com/docs/remote/containers) with all the required tooling to develop and deploy the accelerator. To deploy the Multi Agent Solution accelerator using the provided development container you will also need:
2424

2525
* [Visual Studio Code](https://code.visualstudio.com)
2626
* [Remote containers extension for Visual Studio Code](https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-containers)
@@ -124,8 +124,19 @@ The files for the dev container are located in `/.devcontainer/` folder.
124124
```bash
125125
pip install -r requirements.txt
126126
```
127+
128+
9. **Build the frontend (important):**
129+
130+
- Before running the frontend server, you must build the frontend to generate the necessary `build/assets` directory.
131+
132+
From the `src/frontend` directory, run:
133+
134+
```bash
135+
npm install
136+
npm run build
137+
```
127138
128-
10. **Run the application:**
139+
11. **Run the application:**
129140
- From the src/backend directory:
130141
```bash
131142
python app_kernel.py

0 commit comments

Comments
 (0)