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
To update individual configuration settings in the Django `settings.py` file, you can reference them from the provider object. For example:
186
-
```python
187
-
MESSAGE=CONFIG.get("message")
188
-
```
189
-
190
177
### [Flask](#tab/flask)
191
178
You can use Azure App Configuration in your existing Flask web apps by updating its in-built configuration. You can do this by passing your App Configuration Provider object to the `update` function of your flask app instance in `app.py`:
To update individual configuration settings in the Django `settings.py` file, you can reference them from the provider object. For example:
198
+
```python
199
+
MESSAGE=CONFIG.get("message")
202
200
```
203
201
204
202
---
205
203
206
-
Full code samples on how Azure App Configuration is used in python web apps can be found in the [Azure App Configuration Python Samples](https://github.com/Azure/AppConfiguration/tree/main/examples/Python) repo.
204
+
Full code samples on how Azure App Configuration is used in python web apps can be found in the [Azure App Configuration](https://github.com/Azure/AppConfiguration/tree/main/examples/Python) repo.
0 commit comments