You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by jo...@apache.org on 2021/04/20 16:14:55 UTC

[isis] 01/02: ISIS-2505 Amend DevelomentGuide with Quickstart Instructions

This is an automated email from the ASF dual-hosted git repository.

joergrade pushed a commit to branch ISIS-2505_Catch_Up_With_Demo_Examples
in repository https://gitbox.apache.org/repos/asf/isis.git

commit 9c6d5127b7ab1189fd5ab38569357c74e5b06863
Author: Jörg Rade <jo...@kuehne-nagel.com>
AuthorDate: Wed Apr 14 18:25:03 2021 +0200

    ISIS-2505 Amend DevelomentGuide with Quickstart Instructions
---
 .../modules/kroviz/pages/DevelopmentGuide.adoc     | 28 +++++++++++++++++++++-
 1 file changed, 27 insertions(+), 1 deletion(-)

diff --git a/incubator/clients/kroviz/adoc/modules/kroviz/pages/DevelopmentGuide.adoc b/incubator/clients/kroviz/adoc/modules/kroviz/pages/DevelopmentGuide.adoc
index 63ba180..fe778f7 100644
--- a/incubator/clients/kroviz/adoc/modules/kroviz/pages/DevelopmentGuide.adoc
+++ b/incubator/clients/kroviz/adoc/modules/kroviz/pages/DevelopmentGuide.adoc
@@ -5,7 +5,33 @@ image::WheatFieldWithCrows.png[]
 
 == Quickstart
 
-This section provides a quickstart to developing the kroviz client.
+. Build Isis with kroviz
+
+```
+cd ~/isis
+mvn -T 1C clean install \
+ -Dmodule-kroviz \
+ -Dmaven.source.skip=true
+```
+
+[start=2]
+. Start kroviz
+
+```
+cd ~/isis/incubator/clients/kroviz/
+#gradle build
+./gradlew.sh -t run
+```
+
+[start=3]
+. Start the Server App
+. Enter in the Browser:
+```
+http://localhost:3000
+```
+[start=5]
+. Select 'Connect' in the Burger Menu
+
 
 TIP: Originally Apache Isis SimpleApp 1.16.0 was used as the reference RO backend.
 This required some extra steps in order to deal with CORS setup, see sections on pre 2.0.0-M3 and CORS.