From 238b798a2878ebb4c651b60f71d3dbe31b000e8b Mon Sep 17 00:00:00 2001 From: Anatolii Grynchuk Date: Sat, 2 May 2026 02:09:11 +0300 Subject: [PATCH] fix: create wwwroot folder and fix dev connection string port - wwwroot was missing, causing UseStaticFiles warning on startup - appsettings.Development.json now overrides port to 5433 (Docker dev mapping) Ref: IT-634 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- HrynCo.NotificationService.Web/appsettings.Development.json | 3 +++ HrynCo.NotificationService.Web/wwwroot/.gitkeep | 0 2 files changed, 3 insertions(+) create mode 100644 HrynCo.NotificationService.Web/wwwroot/.gitkeep diff --git a/HrynCo.NotificationService.Web/appsettings.Development.json b/HrynCo.NotificationService.Web/appsettings.Development.json index 3ef00ad..1a5b409 100644 --- a/HrynCo.NotificationService.Web/appsettings.Development.json +++ b/HrynCo.NotificationService.Web/appsettings.Development.json @@ -1,4 +1,7 @@ { + "App": { + "ConnectionString": "Host=localhost;Port=5433;Database=notification_service;Username=postgres;Password=postgres" + }, "Serilog": { "MinimumLevel": { "Default": "Debug", diff --git a/HrynCo.NotificationService.Web/wwwroot/.gitkeep b/HrynCo.NotificationService.Web/wwwroot/.gitkeep new file mode 100644 index 0000000..e69de29