| # |
| # Licensed to the Apache Software Foundation (ASF) under one |
| # or more contributor license agreements. See the NOTICE file |
| # distributed with this work for additional information |
| # regarding copyright ownership. The ASF licenses this file |
| # to you under the Apache License, Version 2.0 (the |
| # "License"); you may not use this file except in compliance |
| # with the License. You may obtain a copy of the License at |
| # |
| # http://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, |
| # software distributed under the License is distributed on an |
| # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| # KIND, either express or implied. See the License for the |
| # specific language governing permissions and limitations |
| # under the License. |
| # |
| |
| server.address=0.0.0.0 |
| |
| #run create tables scripts during the application startup |
| kie.flyway.enabled=true |
| |
| #Disabling Spring-Boot Flyway to avoid unnecessary Data Base initialization |
| spring.flyway.enabled=false |
| |
| #jdbc |
| kogito.persistence.type=jdbc |
| spring.datasource.url=jdbc:postgresql://localhost:5432/kogito |
| spring.datasource.username=kogito-user |
| spring.datasource.password=kogito-pass |
| |
| # events |
| spring.kafka.bootstrap-servers=localhost:9092 |
| spring.kafka.producer.key-serializer=org.apache.kafka.common.serialization.StringSerializer |
| spring.kafka.producer.value-serializer=org.apache.kafka.common.serialization.StringSerializer |