thiagoelg commented on code in PR #2965: URL: https://github.com/apache/incubator-kie-tools/pull/2965#discussion_r1984061484
########## packages/dev-deployment-kogito-quarkus-blank-app/src/main/resources/application.properties: ########## @@ -17,11 +17,56 @@ # under the License. # +############### +# Development # +############### + +# Swagger Dev UI configuration. +# More at https://quarkus.io/guides/openapi-swaggerui + quarkus.swagger-ui.always-include=true quarkus.http.cors=true quarkus.http.cors.origins=* quarkus.dev-ui.cors.enabled=false -kogito.service.url=http://localhost:8080 + +##################################### +# Services definition +##################################### +kogito.service.url=http://${quarkus.http.host}:${quarkus.http.port}${quarkus.http.root-path} +kogito.jobs-service.url=http://${quarkus.http.host}:${quarkus.http.port}${quarkus.http.root-path} +kogito.data-index.url=http://${quarkus.http.host}:${quarkus.http.port}${quarkus.http.root-path} quarkus.http.host=0.0.0.0 quarkus.devservices.enabled=false + +quarkus.kogito.data-index.graphql.ui.always-include=true + +############### +# Persistence # +############### + +# Apache KIE provides a separate Flyway subsystem that allows Kogito's internal tables to be created and migrated +# without interfering with your application's Flyway, if you're using it. +# +# This property enables running this isolated Flyway mechanism automatically when the application starts. +# If you want more control over when/how/who executes changes to your database, disable it and run the SQL scripts manually. +kie.flyway.enabled=true + +# Tells the Kogito runtime what kind of persistence is configured. +kogito.persistence.type=jdbc + +# Default DS +quarkus.datasource.db-kind=h2 +quarkus.datasource.username=kie +quarkus.datasource.jdbc.url=jdbc:h2:mem:default;NON_KEYWORDS=VALUE,KEY + +############ +# Security # +############ + +# Keeping it disabled for simplicity. +quarkus.oidc.enabled=false +kogito.auth.enabled=false + +quarkus.keycloak.devservices.create-realm=false +quarkus.keycloak.devservices.enabled=false Review Comment: I don't know if this does anything, but I noticed they were enabled before. -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
