thiagoelg commented on code in PR #2914: URL: https://github.com/apache/incubator-kie-tools/pull/2914#discussion_r1963835917
########## examples/process-accelerator/README.md: ########## @@ -0,0 +1,470 @@ +<!-- + 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. +--> + +# Process Configuration Accelerator Example + +This example focuses on the recommended configuration of a process application based on Apache KIE. + +Note that although this example contains a BPMN process file for demo purposes, the main focus is on the configuration of the application itself. + +1. [Setting up the database using the provided schema (DDL)](#setting-up-the-database-using-the-provided-schema) +2. [Disabling automatic database schema generation through KIE Flyway](#disabling-automatic-database-schema-generation-through-flyway) +3. [Enabling persistence for all sub-systems](#enabling-persistence-for-all-sub-systems) (Runtime Engine, User Tasks, Data-Audit, Data-Index, Jobs Service) +4. [Enabling transaction support](#enabling-transaction-support) +5. [Enabling OpenID Connect (OIDC) and securing endpoints](#enabling-openid-connect-oidc-and-securing-endpoints) +6. [Configuring Jobs Service](#configuring-jobs-service) +7. [Externalizing configuration properties](#externalizing-configuration-properties) +8. [Configuring log levels](#configuring-log-levels) +9. [Tracking license use in ILMT](#tracking-license-use-in-ilmt) + +--- + +If you want to jump straight ahead to running this example, go to + +10. [Running](#running) + +--- + +## Setting up the database using the provided schema + +Apache KIE 10 provides Data Definition Language (DDL) scripts for creating the database schema in a PostgreSQL instance. The generated tables are be used by the persistence layer of the following sub-systems: Review Comment: ```suggestion Apache KIE provides Data Definition Language (DDL) scripts for creating the database schema in a PostgreSQL instance. The generated tables are be used by the persistence layer of the following sub-systems: ``` -- 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]
