kaldesai commented on code in PR #604:
URL: 
https://github.com/apache/incubator-kie-kogito-docs/pull/604#discussion_r1542476974


##########
serverlessworkflow/modules/ROOT/pages/use-cases/advanced-developer-use-cases/getting-started/create-your-first-workflow-project.adoc:
##########
@@ -0,0 +1,187 @@
+= Creating a Quarkus Workflow Project
+
+As a developer, you can use {product_name} to create an application and in 
this guide we want to explore different options and provide an overview of 
available tools that can help in that purpose.
+
+We will also use Quarkus dev mode for iterative development and testing.
+
+As a common application development, you have different phases: Analysis, 
Development and Deployment. Let's explore in detail each phase and what 
{product_name} provides in each case:
+
+* <<proc-analysis-phase,Analysis and taking decisions phase>>
+** <<proc-adding-persistence,Adding persistence?>>
+** <<proc-adding-eventing,Adding eventing?>>
+** <<proc-adding-data-index-service,Adding Data Index service?>>
+** <<proc-adding-job-service,Adding Job service?>>
+
+* <<proc-development-phase,Development phase>>
+** <<proc-boostrapping-the-project,Bootstrapping a project, Creating a 
workflow, Running your workflow application and Testing your workflow 
application >>
+** <<proc-logging-configuration,How to configure logging>>
+** <<proc-dev-ui, Refine your workflow testing with Dev-UI>>
+* <<proc-deployment-phase,Deployment phase>>
+
+
+.Prerequisites
+* You have setup your environment according to the 
xref:getting-started/preparing-environment.adoc#proc-advanced-local-environment-setup[advanced
 environment setup] guide.
+
+For more information about the tooling and the required dependencies, see 
xref:getting-started/getting-familiar-with-our-tooling.adoc[Getting familiar 
with {product_name} tooling].
+
+ifeval::["{kogito_version_redhat}" != ""]
+include::../../pages/_common-content/downstream-project-setup-instructions.adoc[]
+endif::[]
+
+
+[[proc-analysis-phase]]
+== Analysis phase
+
+Start by analyzing the requirements for your {product_name} application. This 
will enable you to make decisions about persistence, eventing, security, 
topology and component interaction needs of your application.
+
+[[proc-adding-persistence]]
+=== Adding persistence?
+Service orchestration is a relevant use case regarding the rise of 
microservices and event driven architectures. These architectures focus on 
communication between services and there is always the need to coordinate that 
communication without the persistence addition requirement.
+
+{product_name} applications use an in-memory persistence by default. This 
makes all the {workflow_instance} information volatile upon runtime restarts. 
In case of this guide, when the workflow runtime is restarted.
+As a developer, you need to decide if there is a need to ensure that your 
workflow instances remain consistent in the context.
+
+If your application requires persistence, you need to decide what kind of 
persistence is needed and configure it properly.

Review Comment:
   ```suggestion
   If your application requires persistence, you must decide what kind of 
persistence is needed and configure it properly.
   ```



-- 
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]

Reply via email to