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
Copy file name to clipboardExpand all lines: README.md
+50-1Lines changed: 50 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -171,6 +171,9 @@ or [customize the models](docs/deploy_customization.md#customizing-model-deploym
171
171
```
172
172
Check for any errors during the deployment, since updated app code will not get deployed if errors occur.
173
173
174
+
⚠️ To avoid unnecessary costs, remember to take down your app if it's no longer in use,
175
+
either by deleting the resource group in the Portal or running `azd down`.
176
+
174
177
## Tracing and Monitoring
175
178
176
179
You can view console logs in Azure portal. You can get the link to the resource group with the azd tool:
@@ -192,7 +195,53 @@ You can view the App Insights tracing in Azure AI Foundry. Select your project o
192
195
193
196
## Development Options
194
197
195
-
As an alternative to local development environment, the following development environment options can be used.
198
+
In addition to the development setup documented above, the following development environment options can be used.
199
+
200
+
<details>
201
+
<summary><b>Local Development Server</b></summary>
202
+
203
+
#### Local Development Server
204
+
205
+
You can optionally use a local development server to test app changes locally. Make sure you first [deployed the app](#deployment) to Azure before running the development server.
206
+
207
+
1. Create a [Python virtual environment](https://docs.python.org/3/tutorial/venv.html#creating-virtual-environments) and activate it.
0 commit comments