You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-[Powershell 7+ (pwsh)](https://github.com/powershell/powershell) - For Windows users only.
117
+
-**Important**: Ensure you can run `pwsh.exe` from a PowerShell terminal. If this fails, you likely need to upgrade PowerShell.
118
118
119
119
2. Create a new folder and switch to it in the terminal.
120
120
3. Run this command to download the project code:
@@ -151,10 +151,20 @@ azd env new
151
151
Enter a name that will be used for the resource group.
152
152
This will create a new folder in the `.azure` folder, and set it as the active environment for any calls to `azd` going forward.
153
153
154
-
Package, provision and deploy this project to Azure:
154
+
Provision the infrastructure needed to run the application.
155
155
156
156
```shell
157
-
azd up
157
+
azd provision
158
+
```
159
+
160
+
> [!IMPORTANT]
161
+
> This application specifically requires some environment variables to be available during the packaging phase. This is why we need to provision the infra first before packaging and deploying the app. In most cases, simply running 'azd up' will package, provision and deploy your apps.
0 commit comments