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:41 UTC

[isis-app-helloworld] 03/04: 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-helloworld.git

commit 6b5b7b1150ea70369c4592ed17eb862f80a361a3
Author: danhaywood <da...@haywood-associates.co.uk>
AuthorDate: Wed Dec 4 15:14:54 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 9da86f6..4092440 100644
--- a/README.adoc
+++ b/README.adoc
@@ -8,24 +8,41 @@ For real-world development, we recommend you start with the link:https://github.
 
 == 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-helloworld
+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 from Maven:
++
 [source,bash]
 ----
 mvn spring-boot:run
 ----
 
-Login using: 
+* Login using:
 
-* username: `sven`
-* password: `pass`
+** username: `sven`
+** password: `pass`
 
 The app runs with H2 running in-memory.