We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9430216 commit 125db86Copy full SHA for 125db86
HD.MD
@@ -0,0 +1,21 @@
1
+# Deployment
2
+
3
+## Deploying the App
4
5
+To deploy the application using the Azure Developer CLI:
6
7
+1. Navigate to the root directory of the project.
8
+2. Run `azd deploy`.
9
10
+## Updating Environment Variables for Azure Container App
11
12
+To update environment variables for the Azure Container App, use the `az containerapp env update` command:
13
14
+1. Open terminal or command prompt.
15
+2. Run the following command, replacing placeholders with the actual values:
16
17
+ ```bash
18
+ az containerapp env update \
19
+ --name <container-app-name> \
20
+ --resource-group <resource-group-name> \
21
+ --set-env-vars "<key1>=<value1>" "<key2>=<value2>" ...
0 commit comments