refactor/Http4sServer: Update default http4s.port from 8181 to 8086

This commit is contained in:
hongwei 2025-12-18 09:07:24 +01:00 committed by simonredfern
parent da29c29c40
commit 4a0eded98c

View File

@ -14,7 +14,7 @@ object Http4sServer extends IOApp {
//Start OBP relevant objects and settings; this step MUST be executed first
new bootstrap.http4s.Http4sBoot().boot
val port = APIUtil.getPropsAsIntValue("http4s.port",8181)
val port = APIUtil.getPropsAsIntValue("http4s.port",8086)
val host = APIUtil.getPropsValue("http4s.host","127.0.0.1")
val services: Kleisli[({type λ[β$0$] = OptionT[IO, β$0$]})#λ, Request[IO], Response[IO]] =