From c1c542dc1a5b3ae034a699b5df341b90a1437d0d Mon Sep 17 00:00:00 2001 From: Jonathan Bourdon Date: Thu, 20 Jun 2024 13:55:24 -0400 Subject: [PATCH] Add ignored appsettings.Development.json --- src/Web/appsettings.Development.json | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 src/Web/appsettings.Development.json diff --git a/src/Web/appsettings.Development.json b/src/Web/appsettings.Development.json new file mode 100644 index 0000000..9dad30e --- /dev/null +++ b/src/Web/appsettings.Development.json @@ -0,0 +1,20 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft": "Information", + "Microsoft.AspNetCore.SpaProxy": "Information", + "Microsoft.Hosting.Lifetime": "Information" + } + }, + "ConnectionStrings": { + "DefaultConnection": "Server=localhost,1433;Database=Hutopy;User Id=sa;Password=P@ssword123!;MultipleActiveResultSets=true;TrustServerCertificate=True" + }, + "Authentication": { + "Jwt": { + "Audience": "hutopy", + "Issuer": "https://auth.hutopy.com", + "Key": "b2df428b9929d3ace7c598bbf4e496b2f0b71ab3cd4f94540356cfc35b000000" + } + } +} \ No newline at end of file