Merge pull request #12 from Shchoholiev/feature/SA-72-azure-configuration

SA-72 Azure configuration
This commit is contained in:
Serhii Shchoholiev 2023-10-28 21:59:58 -04:00 committed by GitHub
commit 4edf221b9c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 20 additions and 5 deletions

View File

@ -4,9 +4,6 @@
name: Build and deploy ASP.Net Core app to Azure Web App - shopping-assistant-api-dev
on:
push:
branches:
- develop
workflow_dispatch:
jobs:
@ -25,6 +22,9 @@ jobs:
- name: Build with dotnet
run: dotnet build --configuration Release
- name: Test with dotnet
run: dotnet test --no-build --verbosity normal
- name: dotnet publish
run: dotnet publish -c Release -o ${{env.DOTNET_ROOT}}/myapp
@ -38,7 +38,7 @@ jobs:
runs-on: ubuntu-latest
needs: build
environment:
name: 'Production'
name: 'Development'
url: ${{ steps.deploy-to-webapp.outputs.webapp-url }}
steps:

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"
}
}