SA-72 Added use of Azure App Config

This commit is contained in:
shchoholiev 2023-10-29 01:54:43 +00:00
parent 821b3acc00
commit e83a254e9d
3 changed files with 16 additions and 1 deletions

View File

@ -6,6 +6,8 @@ using ShoppingAssistantApi.Api.ApiExtentions;
var builder = WebApplication.CreateBuilder(args);
// Add services to the container.
var appConfig = Environment.GetEnvironmentVariable("APP_CONFIG") ?? builder.Configuration.GetConnectionString("AppConfig");
builder.Configuration.AddAzureAppConfiguration(appConfig);
// Learn more about configuring Swagger/OpenAPI at https://aka.ms/aspnetcore/swashbuckle
builder.Services.AddJWTTokenAuthentication(builder.Configuration);

View File

@ -11,6 +11,7 @@
<PackageReference Include="HotChocolate.AspNetCore" Version="13.3.3" />
<PackageReference Include="HotChocolate.AspNetCore.Authorization" Version="13.3.3" />
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="7.0.5" />
<PackageReference Include="Microsoft.Azure.AppConfiguration.AspNetCore" Version="6.1.1" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.4.0" />
</ItemGroup>

View File

@ -5,5 +5,17 @@
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*"
"AllowedHosts": "*",
"ConnectionStrings": {
"MongoDatabaseName": "ShoppingAssistant"
},
"JsonWebTokenKeys": {
"ValidateIssuer": true,
"ValidateAudience": true,
"ValidateLifetime": true,
"ValidateIssuerSigningKey": true
},
"OpenAi": {
"ApiUrl": "https://api.openai.com/v1/chat/completions"
}
}