mirror of
https://github.com/Shchoholiev/shopping-assistant-api.git
synced 2025-04-05 00:59:36 +00:00
SA-72 Added use of Azure App Config
This commit is contained in:
parent
821b3acc00
commit
e83a254e9d
@ -6,6 +6,8 @@ using ShoppingAssistantApi.Api.ApiExtentions;
|
|||||||
var builder = WebApplication.CreateBuilder(args);
|
var builder = WebApplication.CreateBuilder(args);
|
||||||
|
|
||||||
// Add services to the container.
|
// 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
|
// Learn more about configuring Swagger/OpenAPI at https://aka.ms/aspnetcore/swashbuckle
|
||||||
builder.Services.AddJWTTokenAuthentication(builder.Configuration);
|
builder.Services.AddJWTTokenAuthentication(builder.Configuration);
|
||||||
|
@ -11,6 +11,7 @@
|
|||||||
<PackageReference Include="HotChocolate.AspNetCore" Version="13.3.3" />
|
<PackageReference Include="HotChocolate.AspNetCore" Version="13.3.3" />
|
||||||
<PackageReference Include="HotChocolate.AspNetCore.Authorization" 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.AspNetCore.OpenApi" Version="7.0.5" />
|
||||||
|
<PackageReference Include="Microsoft.Azure.AppConfiguration.AspNetCore" Version="6.1.1" />
|
||||||
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.4.0" />
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.4.0" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
@ -5,5 +5,17 @@
|
|||||||
"Microsoft.AspNetCore": "Warning"
|
"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"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user