diff --git a/modules/applications/pages/package-and-deploy-your-application.adoc b/modules/applications/pages/package-and-deploy-your-application.adoc index d0ca1bec27..1045d2d26f 100644 --- a/modules/applications/pages/package-and-deploy-your-application.adoc +++ b/modules/applications/pages/package-and-deploy-your-application.adoc @@ -21,7 +21,7 @@ Once the design is complete, export the application(s) from Bonita UI Builder by === Store Your Application in a Workspace Folder -Place the exported application(s) in a designated `workspace` folder. This folder will be referenced during the build process. +Move the exported application(s) (json files) in a designated `workspace` folder. This folder will be referenced during the build process. You can store these applications in a Git repository too. === Build the Production Binary @@ -48,7 +48,7 @@ Once Bonita UI Builder is ready, all applications contained in the dedicated fol - Published - Made available for users -Then, these applications can be accessed from the Bonita application directory +Then, these applications can be accessed from the Bonita administrator application, application directory page. [.troubleshooting-title] == image:ROOT:images/troubleshooting.png[troubleshooting-icon] Troubleshooting @@ -62,6 +62,6 @@ After building and running the Bonita UI Builder, at least one application are m The application is on error and the Bonita UI Builder is not able to import and deploy the application. [.solution]#Solution# -Check the log of the bonita-ui-builder container with `docker logs ` to find with application is on error. +Check the log of the bonita-ui-builder container with `docker logs ` to find which application is on error. Then fix your application and be sure your export are compatible and a valid JSON. -- diff --git a/modules/applications/pages/production-packaging.adoc b/modules/applications/pages/production-packaging.adoc index 1c2d45f400..0396a3d91e 100644 --- a/modules/applications/pages/production-packaging.adoc +++ b/modules/applications/pages/production-packaging.adoc @@ -14,15 +14,15 @@ NOTE: Before starting, ensure you have **Docker** the following tools installed include::example$Dockerfile[] ---- -* From Bonita UI Builder , export all applications and store them in the an `workspace` folder next to the Dockerfile. +* From Bonita UI Builder , export all applications and store them in the `workspace` folder next to the Dockerfile. -NOTE: You can name the folder as you want and store it where you want, but you need to update the `WORKSPACE` build argument with the new path folder. +NOTE: You can change the default `workspace` folder and use any folder, but in this case use the `WORKSPACE` build argument with the new folder path. To build the production binary docker image you have two poss === Default build command -With this command, the image will be built with the default values define in the Dockerfile. +With this command, the image will be built with the default values defined in the Dockerfile. WARNING: If you use this command, be sure to have the `workspace` folder next to the Dockerfile. diff --git a/modules/applications/pages/ui-builder-docker-installation.adoc b/modules/applications/pages/ui-builder-docker-installation.adoc index a9550d970f..eccf1f372f 100644 --- a/modules/applications/pages/ui-builder-docker-installation.adoc +++ b/modules/applications/pages/ui-builder-docker-installation.adoc @@ -6,11 +6,11 @@ This guide provides instructions on how to configure the `bonita-ui-builder` Do [[environment-variables]] == Docker container Environment variables -This following environment variable are mandatory: +The following environment variable is mandatory: - `BONITA_API_URL`: The URL for the Bonita API. -This following environment variable are optional: +The following environment variables are optional: - `BONITA_DEV_MODE`: Enables user to development mode when set to `1`. - `LOGGING_LEVEL_ROOT`: Sets the logging level for the root logger. (default is `debug`) @@ -30,5 +30,5 @@ I can't access to the Bonita UI Builder. The Bonita UI Builder is not correctly configured. [.solution]#Solution# -Check the environment variables and make sure they are correctly set. The Bonita_API_URL should target a valid Bonita Runtime. +Check the environment variables and make sure they are correctly set. The `BONITA_API_URL` should target a valid Bonita Runtime. --