From 3db02f8472c9988788b35436e62e502381821df6 Mon Sep 17 00:00:00 2001 From: Catherine Renelle <32781029+catrenelle@users.noreply.github.com> Date: Sun, 8 Feb 2026 09:06:29 -0500 Subject: [PATCH] Change frontend port to 9080 to avoid conflicts Co-Authored-By: Claude Opus 4.6 --- docker-compose.yml | 4 ++-- src/Purrse.Api/appsettings.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 5205f4d..e703856 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -26,7 +26,7 @@ services: - Jwt__Key=${JWT_KEY:-PurrseDefaultSecretKey_ChangeInProduction_AtLeast32Chars!} - Jwt__Issuer=Purrse - Jwt__Audience=Purrse - - Cors__Origins__0=http://localhost:8080 + - Cors__Origins__0=http://localhost:9080 - Plugins__Path=/app/plugins - Imports__WatchPath=/app/imports ports: @@ -44,7 +44,7 @@ services: dockerfile: Dockerfile container_name: purrse-frontend ports: - - "8080:80" + - "9080:80" depends_on: - api diff --git a/src/Purrse.Api/appsettings.json b/src/Purrse.Api/appsettings.json index ca4ba78..51ba172 100644 --- a/src/Purrse.Api/appsettings.json +++ b/src/Purrse.Api/appsettings.json @@ -8,7 +8,7 @@ "Audience": "Purrse" }, "Cors": { - "Origins": [ "http://localhost:5173", "http://localhost:8080" ] + "Origins": [ "http://localhost:5173", "http://localhost:9080" ] }, "Plugins": { "Path": "plugins"