vidhyasagarj opened a new issue, #1083: URL: https://github.com/apache/camel-karavan/issues/1083
I am facing a strange problem when I try to run the Karavan app in dev mode with the necessary changes on the Windows machine I have made basic changes to get things to work on windows Changed `package.json` line 6 to 9 ``` "copy-designer": "xcopy ..\\..\\..\\..\\..\\karavan-designer\\src\\designer src\\designer /E/H/Y", "copy-knowledgebase": "xcopy ..\\..\\..\\..\\..\\karavan-designer\\src\\knowledgebase src\\knowledgebase /E/H/Y", "copy-topology": "xcopy ..\\..\\..\\..\\..\\karavan-designer\\src\\topology src\\topology /E/H/Y", "copy-code": "npm run copy-designer && npm run copy-knowledgebase && npm run copy-topology", ``` Created a new quarkus profile - local as below in `application.properties` ``` # Local %local.karavan.auth=public %local.quarkus.oidc.enabled=false %local.quarkus.http.auth.basic=false %local.quarkus.security.users.embedded.enabled=false %local.quarkus.http.auth.permission.authenticated.enabled=false %local.quarkus.http.auth.permission.public.enabled=false %local.karavan.image-registry=localhost:5000 %local.karavan.infinispan.hosts=localhost:11222 %local.karavan.git-repository=http://localhost:3000/karavan/karavan.git %local.karavan.image-registry-install=true %local.karavan.git-install-gitea=true %local.quarkus.http.host=localhost %local.quarkus.http.port=9090 ``` Quarkus served the application without any issue and all looks fine to me.   But when I load the Karavan web the get apis (ex. /public/readiness), keeps loading, not reaching the API at all   Not sure whether it is a Quarkus issue or Windows specific issue. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org