diff --git a/decisioncenter/businessvalueeditor/README-DOCKER.md b/decisioncenter/businessvalueeditor/README-DOCKER.md index 754a8e4..357d546 100644 --- a/decisioncenter/businessvalueeditor/README-DOCKER.md +++ b/decisioncenter/businessvalueeditor/README-DOCKER.md @@ -9,15 +9,9 @@ Before following the steps below, make sure you have built the images as explain ### Running the sample - Navigate to the root directory of the Custom Value Editor sample: - - ```bash - cd decisioncenter/businessvalueeditor - ``` - Run ODM docker images ```bash - docker-compose -f compose-odm-dev.yml up odm-with-custom-value-editor + docker-compose -f compose-odm-dev.yml up odm-with-custom-value-editor & ``` ### Using the Sample @@ -26,7 +20,7 @@ Access Decision Center using the URL **http://localhost:9060** Click on the link **Decision Center Business Console** -Log in with odmAdmin/odmAdmin +Log in with the credentials `odmAdmin` / `odmAdmin` To activate the Custom Value Editor, after login in Decision Center as an administrator : - Go in the menu **Administration>Settings>Custom Settings** diff --git a/decisioncenter/businessvalueeditor/README.md b/decisioncenter/businessvalueeditor/README.md index 698d274..4d4a545 100644 --- a/decisioncenter/businessvalueeditor/README.md +++ b/decisioncenter/businessvalueeditor/README.md @@ -27,7 +27,7 @@ To use the sample in Decision Center, you need to build a JAR for [Docker](READM ODM libraries are required to compile the JAR. For that, deploy ODM for Developer public docker image: ```bash - docker-compose -f ../compose-odm-dev.yml up odm + docker-compose -f compose-odm-dev.yml up odm & ``` and then download the ODM libraries: @@ -42,7 +42,7 @@ To use the sample in Decision Center, you need to build a JAR for [Docker](READM Undeploy ODM for developer (especially if you continue this tutorial on [Docker](README-DOCKER.md) to avoid a TCP/IP port usage conflict) : ```bash - docker-compose -f ../compose-odm-dev.yml down + docker-compose -f compose-odm-dev.yml down ``` 2. Build the JAR diff --git a/decisioncenter/businessvalueeditor/compose-odm-dev.yml b/decisioncenter/businessvalueeditor/businessvalueeditor-source/compose-odm-dev.yml similarity index 71% rename from decisioncenter/businessvalueeditor/compose-odm-dev.yml rename to decisioncenter/businessvalueeditor/businessvalueeditor-source/compose-odm-dev.yml index 84a35e9..7b6b5b0 100644 --- a/decisioncenter/businessvalueeditor/compose-odm-dev.yml +++ b/decisioncenter/businessvalueeditor/businessvalueeditor-source/compose-odm-dev.yml @@ -23,5 +23,5 @@ services: - 9060:9060 - 9453:9453 volumes: - - $PWD/businessvalueeditor-source/target/businessvalueeditor-1.0.jar:/config/download/businessvalueeditor-1.0.jar - - $PWD/businessvalueeditor-source/web.xml:/config/download/web.xml + - $PWD/target/businessvalueeditor-1.0.jar:/config/download/businessvalueeditor-1.0.jar + - $PWD/web.xml:/config/download/web.xml