Skip to content

Latest commit

 

History

History
88 lines (44 loc) · 5.97 KB

File metadata and controls

88 lines (44 loc) · 5.97 KB

Azure App Configuration Examples

.NET Samples

This example showcases a .NET console application that retrieves chat responses from Azure OpenAI. It demonstrates how to configure chat completion using AI Configuration from Azure App Configuration, enabling rapid prompt iteration and frequent tuning of model parameters—without requiring application restarts, rebuilds, or redeployments.

This example showcases a .NET isolated worker model Function App, which operates out-of-process in Azure Functions. It demonstrates how to enable dynamic configuration and utilize feature flags from App Configuration. Additionally, it illustrates how to leverage the App Configuration references feature in Azure Functions to manage trigger parameters within App Configuration.

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

This example demonstrates how to enable dynamic configuration from App Configuration in a .NET console app using the minimal project template style.

This example is an ASP.NET Core web app, which uses the minimal project template style. 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.

Go Samples

This example showcases a Go console application that retrieves chat responses from Azure OpenAI. It demonstrates how to configure chat completion using AI Configuration from Azure App Configuration, enabling rapid prompt iteration and frequent tuning of model parameters—without requiring application restarts, rebuilds, or redeployments.

This example demonstrates how to enable dynamic configuration from App Configuration in a Go console application.

This example demonstrates how to enable dynamic configuration and use feature flags from App Configuration in a web application built with the Gin framework.