You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by da...@apache.org on 2019/12/04 15:17:47 UTC

[isis-app-simpleapp] 03/07: updates README, quick start

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

danhaywood pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/isis-app-simpleapp.git

commit 5a4594e8035c73792a41da5372343662523b6a58
Author: danhaywood <da...@haywood-associates.co.uk>
AuthorDate: Wed Dec 4 15:14:38 2019 +0000

    updates README, quick start
---
 README.adoc | 29 +++++++++++++++++++++++------
 1 file changed, 23 insertions(+), 6 deletions(-)

diff --git a/README.adoc b/README.adoc
index 1d43c6a..709082d 100644
--- a/README.adoc
+++ b/README.adoc
@@ -7,24 +7,41 @@ This is a simple link:http://isis.apache.org[Apache Isis] application, but struc
 
 == Quick start
 
-Build using:
+* install prereqs:
 
+** Java 8 LTS (eg link:https://adoptopenjdk.net/[Adopt OpenJDK] distribution)
+** Maven 3.6 or later (http://maven.apache.org/download.cgi[download])
+* download and unzip
++
 [source,bash]
 ----
-mvn clean install
+REPO=isis-app-simpleapp
+BRANCH=master
+
+curl "https://codeload.github.com/apache/$REPO/zip/$BRANCH" > $REPO-$BRANCH.zip
+unzip $REPO-$BRANCH.zip
+mv $REPO-$BRANCH $REPO
+cd $REPO
 ----
 
-Run using:
+* Build using Maven:
++
+[source,bash]
+----
+mvn clean install
+----
 
+* Run using Maven:
++
 [source,bash]
 ----
 mvn -pl webapp spring-boot:run
 ----
 
-Login using: 
+* Login using:
 
-* username: `sven`
-* password: `pass`
+** username: `sven`
+** password: `pass`
 
 The app runs with H2 running in-memory, with sample data set up using link:https://isis.apache.org/guides/ugtst.html#_ugtst_fixture-scripts[fixture scripts].