io.quarkiverse.quinoa.deployment.config.DevServerConfig.jdp Maven / Gradle / Ivy
io.quarkiverse.quinoa.deployment.config.DevServerConfig.checkPath=After start, Quinoa wait for the external dev server.\nby sending GET requests to this path waiting for a 200 status.\nIf forced empty, Quinoa will not check if the dev server is up.
io.quarkiverse.quinoa.deployment.config.DevServerConfig.checkTimeout=Timeout in ms for the dev server to be up and running.
io.quarkiverse.quinoa.deployment.config.DevServerConfig.directForwarding=Quinoa deals with SPA routing by itself (see quarkus.quinoa.enable-spa-routing), some dev-server have this feature\nenabled by default.\nThis is a problem for proxying as it prevents other Quarkus resources (REST, ...) to answer.\nBy default, Quinoa will try to detect when the dev server is answering with a html page for non-existing resources\n(SPA-Routing)\nin which case it will instead allow other Quarkus resources (REST, ...) to answer.\nSet this to true (direct) when the other Quarkus resources use a specific path prefix (and marked as ignored by Quinoa)\nor if the dev-server is configured without SPA routing.
io.quarkiverse.quinoa.deployment.config.DevServerConfig.enabled=Enable external dev server (live coding).\nIf the "dev-server.port" config is not detected or defined it will be disabled.
io.quarkiverse.quinoa.deployment.config.DevServerConfig.host=Host of the server to forward requests to.
io.quarkiverse.quinoa.deployment.config.DevServerConfig.indexPage=Set this value if the index page is different for the dev-server
io.quarkiverse.quinoa.deployment.config.DevServerConfig.logs=Enable external dev server live coding logs.\nThis is not enabled by default because most dev servers display compilation errors directly in the browser.
io.quarkiverse.quinoa.deployment.config.DevServerConfig.managed=When set to true, Quinoa will manage the Web UI dev server\nWhen set to false, the Web UI dev server have to be started before running Quarkus dev
io.quarkiverse.quinoa.deployment.config.DevServerConfig.port=Port of the server to forward requests to.\nThe dev server process (i.e npm start) is managed like a dev service by Quarkus.\nIf the external server responds with a 404, it is ignored by Quinoa and processed like any other backend request.
io.quarkiverse.quinoa.deployment.config.DevServerConfig.tls=When set to true, Quinoa requests will be forwarded with tls enabled.
io.quarkiverse.quinoa.deployment.config.DevServerConfig.tlsAllowInsecure=When set to true, Quinoa will accept any certificate with any hostname.
io.quarkiverse.quinoa.deployment.config.DevServerConfig.websocket=By default, Quinoa will handle request upgrade to websocket and act as proxy with the dev server.\nIf set to false, Quinoa will pass websocket upgrade request to the next Vert.x route handler.