Skip to content

Commit 8117d08

Browse files
Updated the co-pilot comments
1 parent ec60238 commit 8117d08

4 files changed

Lines changed: 11 additions & 6 deletions

File tree

App/backend-api/Microsoft.GS.DPS.Host/appsettings.Development.json.sample

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
},
88
"AllowedHosts": "*",
99
"ConnectionStrings": {
10-
"AppConfig": "https://<app-config-name>.azconfig.io" // Replace with the Azure App Configuration endpoint URL
10+
// Replace with the Azure App Configuration endpoint URL
11+
"AppConfig": "https://<app-config-name>.azconfig.io"
1112
}
1213
}
1314

App/kernel-memory/service/Service/appsettings.Development.json.sample

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"ConnectionStrings": {
3-
"AppConfig": "https://<app-config-name>.azconfig.io" // Replace with the Azure App Configuration endpoint URL
3+
// Replace with the Azure App Configuration endpoint URL
4+
"AppConfig": "https://<app-config-name>.azconfig.io"
45
},
56
"KernelMemory": {
67
"Service": {

docs/LocalSetupGuide.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ APP_CONFIGURATION_URL=https://[Your app configuration service name].azconfig.io
7777
```
7878

7979
For reference, see the image below:
80-
![local_developement_setup_1](./images/local_development_setup_1.png)
80+
![local_development_setup_1](./images/local_development_setup_1.png)
8181

8282
### Required Azure RBAC Permissions
8383

@@ -214,8 +214,8 @@ Copy-Item appsettings.Development.json.sample appsettings.Development.json # W
214214
4. Edit the `appsettings.Development.json` file with your Azure App Configuration URL:
215215

216216
```json
217+
// Replace with the Azure App Configuration endpoint URL
217218
"AppConfig": "https://<app-config-name>.azconfig.io"
218-
// replace the app configuration name from the deployed resource group.
219219
```
220220
#### Microsoft.GS.DPS Solution
221221

@@ -234,8 +234,8 @@ Copy-Item appsettings.Development.json.sample appsettings.Development.json # W
234234
4. Edit the `appsettings.Development.json` file with your Azure App Configuration URL:
235235

236236
```json
237+
// Replace with the Azure App Configuration endpoint URL
237238
"AppConfig": "https://<app-config-name>.azconfig.io"
238-
// replace the app configuration name from the deployed resource group.
239239
```
240240

241241
---
@@ -393,4 +393,4 @@ cat .env | grep -v '^#' | grep '=' # Should show key=value pairs
393393
- [Deployment Guide](DeploymentGuide.md) - Instructions for production deployment.
394394
- [Delete Resource Group](DeleteResourceGroup.md) - Steps to safely delete the Azure resource group created for the solution.
395395
- [PowerShell Setup](PowershellSetup.md) - Instructions for setting up PowerShell and required scripts.
396-
- [Quota Check](QuotaCheck.md) - Steps to verify Azure quotas and ensure required limits before deployment..
396+
- [Quota Check](QuotaCheck.md) - Steps to verify Azure quotas and ensure required limits before deployment.

docs/PowershellSetup.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,17 +24,20 @@ This guide will help you add **PowerShell 7** (PowerShell Core) to your system
2424
C:\Program Files\PowerShell\7\
2525
```
2626
- If the path is already there, you don't need to add it again.
27+
2728
### 4. Add PowerShell 7 Path
2829
- If the path is not already in the list, click **New** in the **Edit Environment Variable** window.
2930
- Add the following path to the list:
3031
```
3132
C:\Program Files\PowerShell\7\
3233
```
3334
> **Note:** If you installed PowerShell 7 in a custom location, replace the above path with the correct one.
35+
3436
### 5. Save Changes
3537
- After adding the path, click **OK** to close the **Edit Environment Variable** window.
3638
- Click **OK** again to close the **Environment Variables** window.
3739
- Finally, click **OK** to exit the **System Properties** window.
40+
3841
### 6. Verify PowerShell 7 in PATH
3942
- Open **Command Prompt** or **Run** (press `Win + R`).
4043
- Type `pwsh` and press Enter. If PowerShell 7 opens, you've successfully added it to your PATH!

0 commit comments

Comments
 (0)