fix: Down merge to dev from main - Enhance KM Modularity documentation and add Azure configuration - #1031
Closed
Pavan-Microsoft wants to merge 3 commits into
Closed
fix: Down merge to dev from main - Enhance KM Modularity documentation and add Azure configuration#1031Pavan-Microsoft wants to merge 3 commits into
Pavan-Microsoft wants to merge 3 commits into
Conversation
fix: add .env configuration file for Azure settings
Contributor
There was a problem hiding this comment.
Pull request overview
This PR adds an infra/vscode_web/.env file intended for the VS Code for the Web Azure AI Foundry templates, providing Azure-related environment variables to help configure deployments and/or local development against existing Azure resources.
Changes:
- Added Azure environment configuration variables (agent ID, environment name, subscription ID, AI project endpoint/resource ID) to
infra/vscode_web/.env. - Set
AZD_ALLOW_NON_EMPTY_FOLDER=trueto allow Azure Developer CLI operations in non-empty folders.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+1
to
+6
| AZURE_EXISTING_AGENT_ID="<%= agentId %>" | ||
| AZURE_ENV_NAME="<%= playgroundName %>" | ||
| # AZURE_LOCATION="<%= location %>" | ||
| AZURE_SUBSCRIPTION_ID="<%= subscriptionId %>" | ||
| AZURE_EXISTING_AIPROJECT_ENDPOINT="<%= endpoint %>" | ||
| AZURE_EXISTING_AIPROJECT_RESOURCE_ID="<%= projectResourceId %>" |
Comment on lines
+1
to
+7
| AZURE_EXISTING_AGENT_ID="<%= agentId %>" | ||
| AZURE_ENV_NAME="<%= playgroundName %>" | ||
| # AZURE_LOCATION="<%= location %>" | ||
| AZURE_SUBSCRIPTION_ID="<%= subscriptionId %>" | ||
| AZURE_EXISTING_AIPROJECT_ENDPOINT="<%= endpoint %>" | ||
| AZURE_EXISTING_AIPROJECT_RESOURCE_ID="<%= projectResourceId %>" | ||
| AZD_ALLOW_NON_EMPTY_FOLDER=true No newline at end of file |
Pavan-Microsoft
marked this pull request as draft
August 3, 2026 07:07
Pavan-Microsoft
marked this pull request as ready for review
August 3, 2026 07:07
Pavan-Microsoft
marked this pull request as draft
August 3, 2026 07:07
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Purpose
This pull request updates the
.envfile ininfra/vscode_webto add Azure-related environment variables. These additions will help configure the application to connect with existing Azure resources and set up the environment for deployment or local development.Azure environment configuration:
.envfile, enabling the application to connect to specific Azure resources.AZD_ALLOW_NON_EMPTY_FOLDER=trueto allow Azure Developer CLI operations in non-empty folders.Does this introduce a breaking change?