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 2014/02/17 11:21:29 UTC

svn commit: r1568934 - /isis/site/trunk/content/intro/getting-started/quickstart-archetype.md

Author: danhaywood
Date: Mon Feb 17 10:21:28 2014
New Revision: 1568934

URL: http://svn.apache.org/r1568934
Log:
screencasts

Modified:
    isis/site/trunk/content/intro/getting-started/quickstart-archetype.md

Modified: isis/site/trunk/content/intro/getting-started/quickstart-archetype.md
URL: http://svn.apache.org/viewvc/isis/site/trunk/content/intro/getting-started/quickstart-archetype.md?rev=1568934&r1=1568933&r2=1568934&view=diff
==============================================================================
--- isis/site/trunk/content/intro/getting-started/quickstart-archetype.md (original)
+++ isis/site/trunk/content/intro/getting-started/quickstart-archetype.md Mon Feb 17 10:21:28 2014
@@ -8,12 +8,16 @@ The archetype also (from 1.4.0-SNAPSHOT 
 
 Running this archetype is a good way to get familiar with the structure of a not-too-complex Isis application.  However, to get started with your own application, we generally recommend that you run the alternative [simple archetype](./simple-archetype.html).  This will generate a completely stripped back and minimal application for you to refactor and extend; you can then use this ToDo app to guide your own development.
 
-### <a name="screencast"></a>Screencasts
+## <a name="screencast"></a>Screencasts
+
+#### How to use the quickstart archetype...
 
 How to use the Apache Isis quickstart archetype to generate your first Apache Isis application.
 
 <iframe width="420" height="315" src="http://www.youtube.com/embed/RH6J4gx8OoA" frameborder="0" allowfullscreen></iframe>
 
+#### ... and what it generates
+
 A run-through of the main features of the todo application generated by the Apache Isis quickstart archetype.  
 
 > Note, this relates to v1.2, so is somewhat out-of-date.
@@ -44,7 +48,7 @@ where:
 
 The archetype generation process will then run; it only takes a few seconds.
 
-### Building the App
+## Building the App
 
 Switch into the root directory of your newly generated app, and build your app:
 
@@ -55,7 +59,7 @@ mvn clean install
 
 where `myapp` is the `artifactId` entered above.
 
-### Running the App
+## Running the App
 
 The `quickstart_wicket_restful_jdo` archetype generates a single WAR file, configured to run both the [Wicket viewer](../../components/viewers/wicket/about.html) and the [Restful Objects viewer](../../components/viewers/wicket/about.html).  The archetype also configures the [JDO Objectstore](../../components/objectstores/jdo/about.html) to use an in-memory HSQLDB connection.  
 
@@ -87,19 +91,19 @@ Note that if you use `mvn jetty:run`, th
 
 Finally, you can also run the app by deploying to a standalone servlet container such as [Tomcat](http://tomcat.apache.org).
 
-### Using the App
+## Using the App
 
 The archetype provides a welcome page that explains the classes and files generated, and provides detailed guidance and what to do next.
 
 The app itself is configured to run using shiro security, as configured in the `WEB-INF/shiro.ini` config file.  To log in, use `sven/pass`.
 
-### Modifying the App
+## Modifying the App
 
 Once you are familiar with the generated app, you'll want to start modifying it.  There is plenty of guidance on this site; check out the 'programming model how-tos' section on the main [documentation](../../documentation.html) page first).
 
 If you use Eclipse, do also install the [Eclipse templates](../resources/editor-templates.html); these will help you follow the Isis naming conventions.  
 
-#### App Structure
+## App Structure
 
 As noted above, the generated app is a reasonably complete application for tracking to-do items.  It consists of the following modules: