From 32d06cdf94184878934983c8c9dac9d3b023cfa8 Mon Sep 17 00:00:00 2001 From: ilitirit Date: Mon, 10 Apr 2023 15:27:34 +0200 Subject: [PATCH] Add dummy appsettings files --- Expedience.Api/appsettings.Development.json | 14 ++++++++++++++ Expedience.Api/appsettings.Production.json | 8 ++++++++ 2 files changed, 22 insertions(+) create mode 100644 Expedience.Api/appsettings.Development.json create mode 100644 Expedience.Api/appsettings.Production.json diff --git a/Expedience.Api/appsettings.Development.json b/Expedience.Api/appsettings.Development.json new file mode 100644 index 0000000..76ff876 --- /dev/null +++ b/Expedience.Api/appsettings.Development.json @@ -0,0 +1,14 @@ +{ + "ConnectionStrings": { + "Expedience": "Host=localhost;Port=5432;Database=expedience;Username=user;Password=password;" + }, + "RabbitMq": { + "Host": "rabbitmq://localhost" + }, + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/Expedience.Api/appsettings.Production.json b/Expedience.Api/appsettings.Production.json new file mode 100644 index 0000000..a34cd70 --- /dev/null +++ b/Expedience.Api/appsettings.Production.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +}