Skip to content

Latest commit

 

History

History

examples

Azure App Configuration Examples

DotNet Samples

This Azure Functions App demonstrates how to backup configuration data from one App Configuration store to another store. It uses Event Grid for change notifications received from App Configuration and saves them in an Azure Storage queue. The app wakes up every 10 minutes to backup the data if there are any changes.

This example is a .NET class library Function App, which runs in-process with the runtime of Azure Functions. It demonstrates how to enable dynamic configuration and use feature flags from App Configuration. It also shows how to leverage App Configuration for a queue triggered function with the trigger settings stored in App Configuration.

This example is a .NET isolated process Function App, which runs out-of-process in Azure Functions. It demonstrates how to enable dynamic configuration and use feature flags from App Configuration.

This example demonstrates how to enable dynamic configuration from App Configuration in a console app written in .NET Core.

This ASP.NET Core app demonstrates how to enable dynamic configuration from App Configuration using the poll model. It uses Azure AD/Managed Identity to authenticate with App Configuration.

This example is an ASP.NET Core app, which uses the modernized project template introduced in .NET 6. It demonstrates how to enable dynamic configuration and use feature flags from App Configuration.

This ASP.NET Core app demonstrates how to enable dynamic configuration from App Configuration using the push model. It uses Event Hub to consume push notifications from Event Grid triggered by changes made in App Configuration.

This example demonstrates how to enable dynamic configuration from App Configuration in a Web Job app written in .NET Core.

This ASP.NET web application is a .NET Framework MVC 5 app. It leverages the configuration builder for App Configuration to load configuration to App Settings and consumes from the ConfigurationManager. As is the design of the .NET Framework App Settings, the configuration will only be updated upon app restart.

This ASP.NET web application is a .NET Framework Web Forms app. It demonstrates how to leverage the App Configuration .NET Standard provider library to achieve dynamic configuration and control feature launches with feature flags. The same technique applies to .NET Framework MVC apps.

Spring Samples

Contains multiple Azure App Configuration Spring boot sample projects.

This example shows how to use the basic features of Azure App Configuration in a in Java Spring cloud console application.

This example shows how to dynamically update configuration properties in a Spring Web application.

This example shows how to convert an existing Java Spring boot application to use Azure App Configuration.

This example shows how to use feature flags in a Java Spring boot application.

This example shows how to use feature flags in a Spring Web application.

Python Samples

This example shows how to use the Azure App Configuration Python Provider in your python Django app.

This example shows how to use the Azure App Configuration Python Provider in your python Flask app.