From b9fcc4157825b353429de282739528e21dd615c8 Mon Sep 17 00:00:00 2001 From: Sidita Duli Date: Fri, 29 Sep 2023 16:29:02 +0200 Subject: [PATCH 1/2] Add --locked flag in cli-reference --- docs/cli-reference.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/cli-reference.md b/docs/cli-reference.md index 9bbb9b0..bf8d368 100644 --- a/docs/cli-reference.md +++ b/docs/cli-reference.md @@ -20,8 +20,8 @@ Initializes a new Dozer project by generating the foundational `dozer-config.yam #### `dozer live` Initiates an in-browser interface for real-time Dozer application development. As the source code is modified in the IDE, changes are immediately reflected in this interface, enabling instant visualization and interactive testing. It streamlines the feedback loop, offering insights into data flows, configurations, and endpoints, all within the context of the live application. -#### `dozer run` -Initiates Dozer in a non-interactive way, but starting both `app` and `api` as different threads of the same process. +#### `dozer run [--locked]` +Initiates Dozer in a non-interactive way, but starting both `app` and `api` as different threads of the same process. The `--locked` flag to `dozer run` is optional. ## Self-Hosted Deployment From 2ba0ffe26b4b0bdfef495154a8878604c4ce16f2 Mon Sep 17 00:00:00 2001 From: Sidita Duli Date: Fri, 29 Sep 2023 16:30:49 +0200 Subject: [PATCH 2/2] dozer run in monitoring application --- docs/getting_started/core/monitoring-your-application.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/getting_started/core/monitoring-your-application.md b/docs/getting_started/core/monitoring-your-application.md index 3654935..17cb27a 100644 --- a/docs/getting_started/core/monitoring-your-application.md +++ b/docs/getting_started/core/monitoring-your-application.md @@ -44,7 +44,7 @@ To check if the ***dozer-ui-lite*** is running properly with your dozer applicat Then let's run your dozer application! ```bash -dozer +dozer run ```