From bdcbd80d4ec3f8177ec65c6799bf6daaf57fef0f Mon Sep 17 00:00:00 2001 From: Clinton Alexander Date: Wed, 24 Aug 2016 16:30:35 +0100 Subject: [PATCH] Updated docs to reflect gradle changes. --- docs/source/creating-a-cordapp.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/source/creating-a-cordapp.rst b/docs/source/creating-a-cordapp.rst index 3f8327e1fa..a3eb561973 100644 --- a/docs/source/creating-a-cordapp.rst +++ b/docs/source/creating-a-cordapp.rst @@ -35,10 +35,10 @@ construction, where message handlers should be registered and threads started. Starting Nodes -------------- -To use an app you must also have a node server. To create a node server run the gradle createStandalone task. +To use an app you must also have a node server. To create a node server run the gradle installTemplateNodes task. -This will output the node JAR to ``build/libs/r3prototyping-x.y-SNAPSHOT-capsule.jar`` and several sample/standard -node servers to ``build/standalone``. For now you can use the ``build/standalone/nodea`` configuration as a template. +This will output the node JAR to ``build/libs/corda.jar`` and several sample/standard +node servers to ``build/nodes``. For now you can use the ``build/nodes/nodea`` configuration as a template. Each node server must have a ``node.conf`` file in the same directory as the node JAR file. After first execution of the node server there will be many other configuration and persistence files created in this directory. @@ -58,7 +58,7 @@ Starting your Node Now you have a node server with your Cordapp installed, you can run it by navigating to ```` and running - java -jar r3prototyping-x.y-SNAPSHOT-capsule.jar + java -jar corda.jar The plugin should automatically be registered and the configuration file used.