Skip to content

Commit 67cc0e2

Browse files
committed
CHORE: Clean up code structure and remove redundancies
- Refactored several functions for improved readability. - Removed unused variables and imports throughout the codebase. - Updated comments to better reflect the current logic.
1 parent b9c2185 commit 67cc0e2

3 files changed

Lines changed: 1728 additions & 1435 deletions

File tree

.vscode/mcp.json

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,6 @@
99
"mcp"
1010
]
1111
},
12-
"azure-verified-module-bicep": {
13-
"type": "sse",
14-
"url": "https://gitmcp.io/Azure/bicep-registry-modules"
15-
},
1612
"context7": {
1713
"type": "stdio",
1814
"command": "npx",
@@ -29,10 +25,6 @@
2925
],
3026
"cwd": "${workspaceFolder}"
3127
},
32-
"microsoft-agent-framework": {
33-
"url": "https://gitmcp.io/microsoft/agent-framework",
34-
"type": "sse"
35-
},
3628
"microsoft-learn": {
3729
"url": "https://learn.microsoft.com/api/mcp",
3830
"type": "http"
@@ -41,29 +33,13 @@
4133
"type": "http",
4234
"url": "https://mcp.ai.azure.com"
4335
},
44-
"react-repo": {
45-
"url": "https://gitmcp.io/facebook/react",
46-
"type": "sse"
47-
},
48-
"typescript-repo": {
49-
"url": "https://gitmcp.io/microsoft/TypeScript",
50-
"type": "sse"
51-
},
52-
"nodejs-repo": {
53-
"url": "https://gitmcp.io/nodejs/node",
54-
"type": "sse"
55-
},
5636
"playwright": {
5737
"type": "stdio",
5838
"command": "npx",
5939
"args": [
6040
"playwright",
6141
"run-test-mcp-server"
6242
]
63-
},
64-
"shadcnui-repo": {
65-
"url": "https://gitmcp.io/shadcn-ui/ui",
66-
"type": "sse"
6743
}
6844
}
6945
}

infra/main.bicep

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ module rg 'br/public:avm/res/resources/resource-group:0.4.3' = {
9999

100100
// --------- NETWORKING RESOURCES ---------
101101
// Virtual Network with subnets for Container Apps Environment and Private Endpoints
102-
module virtualNetwork 'br/public:avm/res/network/virtual-network:0.8.0' = {
102+
module virtualNetwork 'br/public:avm/res/network/virtual-network:0.8.1' = {
103103
name: 'virtual-network-deployment-${resourceToken}'
104104
scope: resourceGroup(resourceGroupName)
105105
dependsOn: [
@@ -449,7 +449,7 @@ module cosmosDbAccount 'br/public:avm/res/document-db/database-account:0.19.0' =
449449
}
450450

451451
// --------- CONTAINER APPS ENVIRONMENT ---------
452-
module containerAppsEnvironment 'br/public:avm/res/app/managed-environment:0.13.1' = {
452+
module containerAppsEnvironment 'br/public:avm/res/app/managed-environment:0.13.2' = {
453453
name: 'container-apps-environment-deployment-${resourceToken}'
454454
scope: resourceGroup(resourceGroupName)
455455
dependsOn: [
@@ -486,7 +486,7 @@ module aspireDashboard 'aspire-dashboard.bicep' = {
486486
}
487487

488488
// --------- CONTAINER APP (API) ---------
489-
module containerApp 'br/public:avm/res/app/container-app:0.22.0' = {
489+
module containerApp 'br/public:avm/res/app/container-app:0.22.1' = {
490490
name: 'container-app-api-deployment-${resourceToken}'
491491
scope: resourceGroup(resourceGroupName)
492492
dependsOn: [
@@ -631,7 +631,7 @@ module principalCosmosDbRoles './core/security/role_cosmosdb.bicep' = if (!empty
631631
}
632632

633633
// --------- STATIC WEB APP (FRONTEND) ---------
634-
module staticWebApp 'br/public:avm/res/web/static-site:0.9.3' = {
634+
module staticWebApp 'br/public:avm/res/web/static-site:0.9.4' = {
635635
name: 'static-web-app-deployment-${resourceToken}'
636636
scope: resourceGroup(resourceGroupName)
637637
dependsOn: [

0 commit comments

Comments
 (0)