You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@river.apache.org by gt...@apache.org on 2014/02/18 15:31:19 UTC

[1/2] git commit: Readme.md now has slightly better formatting.

Repository: river-container
Updated Branches:
  refs/heads/master 496e36fcb -> 4f7b49be7


Readme.md now has slightly better formatting.

Project: http://git-wip-us.apache.org/repos/asf/river-container/repo
Commit: http://git-wip-us.apache.org/repos/asf/river-container/commit/3e9b9536
Tree: http://git-wip-us.apache.org/repos/asf/river-container/tree/3e9b9536
Diff: http://git-wip-us.apache.org/repos/asf/river-container/diff/3e9b9536

Branch: refs/heads/master
Commit: 3e9b95367130248d891c9cc283d2fe258149240f
Parents: 496e36f
Author: Greg Trasuk <tr...@trasuk.com>
Authored: Tue Feb 18 09:27:40 2014 -0500
Committer: Greg Trasuk <tr...@trasuk.com>
Committed: Tue Feb 18 09:27:40 2014 -0500

----------------------------------------------------------------------
 README.md | 30 ++++++++++++++++--------------
 1 file changed, 16 insertions(+), 14 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/river-container/blob/3e9b9536/README.md
----------------------------------------------------------------------
diff --git a/README.md b/README.md
index 7e59b85..f9c4bce 100644
--- a/README.md
+++ b/README.md
@@ -29,11 +29,11 @@ The First Fifteen Minutes
 Let's assume you've managed to download the source from git.  In fact, let's assume that
 you're reasonably conversant with git, so you can pull the examples project below.
 
-# Before You Start  
+## Before You Start  
 You'll need Maven 3.x installed, such that you can run 'mvn' from the command
 line.  
 
-# Build From Source 
+## Build From Source 
 
 <i>This step may not be required in the future, since you'll be able to 
 download a convenience binary once the project is released</i>
@@ -41,7 +41,7 @@ download a convenience binary once the project is released</i>
 Go to the root of the river-container download, and type  
     mvn clean install
 
-# Run the default container profile  
+## Run the default container profile  
     cd product/target/product*
     bin/run 
 
@@ -49,9 +49,10 @@ The steps above will startup a default container that has instances of the
 service registrar (Reggie) and the transaction manager (Mahalo).  All services
 are registered in a workgroup called 'RiverContainerDefault'.
 
-# Run the service browser  
+## Run the service browser  
 Open a new command line window in the root of the river-container download, then
-do the following  
+do the following:  
+
     cd product/target/product*
     bin/run client browser
 
@@ -60,20 +61,20 @@ Select the registrar.  You should now see the infrastructure services, Reggie an
 Mahalo.  Leave the service browser running while we start up a "Hello-world" 
 service, below.
 
-# Compile a "Hello-World" Service
+## Compile a "Hello-World" Service
 
 <i>Maybe the 'hello-world' example should be included in the container deliverable?
-Please comment on 'dev@river.apache.org'.</i>
-
-<i>Eventually, we should be able to create this example service using a Maven
+Please comment on 'dev@river.apache.org'.  Eventually, we should be able to 
+create this example service using a Maven
 archetype.</i>
 
 Using git, pull the examples from https://github.com/trasukg/river-container-examples.
 
-'cd' into your hello-example' directory, and then  
+'cd' into your hello-example' directory, and then:
+  
     mvn clean install
 
-# Deploy and run the "Hello-World" Service
+## Deploy and run the "Hello-World" Service
 
 When Maven is done, you should be able to see the finished service archive,
 'hello-module/target/hello-module-1.0-SNAPSHOT.jar'
@@ -90,7 +91,7 @@ service is being deployed.  If you didn't leave the container running, start it
 You should also see the service in the service browser, with the interface
 'org.apache.river.container.hello.example.api.Greeter'
 
-# Deploy and Run the "Hello-World" Consumer
+## Deploy and Run the "Hello-World" Consumer
 
 When Maven finished above, it also created a client archive, 
 'hello-client-module/target/hello-client-module-1.0-SNAPSHOT.jar'
@@ -99,7 +100,8 @@ Copy that 'jar' file into the
 'profiles/client/deploy' folder inside our 'river-container/product/target/product*' folder.
 
 Open a new command line window in the root of the river-container download, then
-do the following  
+do the following:
+ 
     cd product/target/product*
     bin/run client hello-client
 
@@ -108,7 +110,7 @@ your name and then press return.
 
 The client sends the greeter service a message, then prints out the reply.
 
-# Use the Network!
+## Use the Network!
 
 If you have another machine on the local area network, and if the network is
 configured to allow multicast, you should be able to run the browser and the


[2/2] git commit: Readme.md now has slightly better formatting.

Posted by gt...@apache.org.
Readme.md now has slightly better formatting.

Project: http://git-wip-us.apache.org/repos/asf/river-container/repo
Commit: http://git-wip-us.apache.org/repos/asf/river-container/commit/4f7b49be
Tree: http://git-wip-us.apache.org/repos/asf/river-container/tree/4f7b49be
Diff: http://git-wip-us.apache.org/repos/asf/river-container/diff/4f7b49be

Branch: refs/heads/master
Commit: 4f7b49be7129170a4a274b7867e2fb5ee0965376
Parents: 3e9b953
Author: Greg Trasuk <tr...@trasuk.com>
Authored: Tue Feb 18 09:29:20 2014 -0500
Committer: Greg Trasuk <tr...@trasuk.com>
Committed: Tue Feb 18 09:29:20 2014 -0500

----------------------------------------------------------------------
 README.md | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/river-container/blob/4f7b49be/README.md
----------------------------------------------------------------------
diff --git a/README.md b/README.md
index f9c4bce..17182eb 100644
--- a/README.md
+++ b/README.md
@@ -38,10 +38,12 @@ line.
 <i>This step may not be required in the future, since you'll be able to 
 download a convenience binary once the project is released</i>
 
-Go to the root of the river-container download, and type  
+Go to the root of the river-container download, and type 
+ 
     mvn clean install
 
 ## Run the default container profile  
+
     cd product/target/product*
     bin/run