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

requiredVersions:
azd: '>= 1.18.0'

parameters:
azureAiServiceLocation:
type: string
default: japaneast

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

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

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/main/docs/DeploymentGuide.md#deploying-with-azd).

### 🛠️ 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