From ba5725d780d9cb34aa0e6be4d75415ea8b6dd78b Mon Sep 17 00:00:00 2001 From: eee4 <41441600+eee4@users.noreply.github.com> Date: Thu, 10 Apr 2025 23:18:06 +0200 Subject: [PATCH] feat: add dummy appsettings.json file --- WebApp/appsettings.example.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 WebApp/appsettings.example.json diff --git a/WebApp/appsettings.example.json b/WebApp/appsettings.example.json new file mode 100644 index 0000000..e45d386 --- /dev/null +++ b/WebApp/appsettings.example.json @@ -0,0 +1,12 @@ +{ + "ConnectionStrings": { + "DefaultConnection": "Server=some_host;Database=database_resource;Username=database_user;Password=some_password" + }, + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "AllowedHosts": "*" +} \ No newline at end of file