Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
25 changes: 25 additions & 0 deletions azure_custom.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: modernize-your-code-solution-accelerator
metadata:
template: modernize-your-code-solution-accelerator@1.0

requiredVersions:
azd: '>= 1.18.0'

parameters:
azureAiServiceLocation:
type: string
default: japaneast

services:
backend:
project: ./src/backend
host: containerapp
language: python
frontend:
project: ./src/frontend
host: containerapp
language: js

infra:
provider: bicep
path: infra
10 changes: 10 additions & 0 deletions docs/DeploymentGuide.md
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,16 @@ To change the azd parameters from the default values, follow the steps [here](..

6. You can now delete the resources by running `azd down`, when you have finished trying out the application.

### Deploy Your local changes

Copilot AI Nov 10, 2025

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The section header "Deploy Your local changes" has inconsistent capitalization. "Your" should be lowercase for proper title case. Change to "Deploy your local changes".

Suggested change
### Deploy Your local changes
### Deploy your local changes

Copilot uses AI. Check for mistakes.

To deploy your local changes rename the below files.

Rename `azure.yaml` to `azure_original.yaml` and `azure_custom.yaml` to `azure.yaml`.

Go to `infra` directory

Rename `main.bicep` to `main_original.bicep` and `main_custom.bicep` to `main.bicep`. Continue with the [deploying steps](https://github.com/microsoft/Modernize-your-code-solution-accelerator/blob/ve-Local-readme/docs/DeploymentGuide.md#deploying-with-azd).

Copilot AI Nov 10, 2025

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The GitHub URL contains a branch reference 've-Local-readme' which appears to be a feature branch rather than a stable reference like 'main' or a specific release tag. Documentation links should point to stable references to ensure they remain valid and accessible. Update to reference 'main' branch or use a permalink to a specific commit.

Suggested change
Rename `main.bicep` to `main_original.bicep` and `main_custom.bicep` to `main.bicep`. Continue with the [deploying steps](https://github.com/microsoft/Modernize-your-code-solution-accelerator/blob/ve-Local-readme/docs/DeploymentGuide.md#deploying-with-azd).
Rename `main.bicep` to `main_original.bicep` and `main_custom.bicep` to `main.bicep`. Continue with the [deploying steps](https://github.com/microsoft/Modernize-your-code-solution-accelerator/blob/main/docs/DeploymentGuide.md#deploying-with-azd).

Copilot uses AI. Check for mistakes.

### 🛠️ Troubleshooting
If you encounter any issues during the deployment process, please refer [troubleshooting](../docs/TroubleShootingSteps.md) document for detailed steps and solutions.

Expand Down
Loading