You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@predictionio.apache.org by do...@apache.org on 2018/08/26 23:25:09 UTC

[04/40] predictionio git commit: [PIO-129] Move CLI document

[PIO-129] Move CLI document

Closes #438


Project: http://git-wip-us.apache.org/repos/asf/predictionio/repo
Commit: http://git-wip-us.apache.org/repos/asf/predictionio/commit/f92d2ac5
Tree: http://git-wip-us.apache.org/repos/asf/predictionio/tree/f92d2ac5
Diff: http://git-wip-us.apache.org/repos/asf/predictionio/diff/f92d2ac5

Branch: refs/heads/master
Commit: f92d2ac5d39a99565f07f2ffb64f17dfb8ae2d30
Parents: 5f8a0c9
Author: Naoki Takezoe <ta...@apache.org>
Authored: Thu Oct 5 22:14:08 2017 -0700
Committer: Donald Szeto <do...@apache.org>
Committed: Thu Oct 5 22:15:30 2017 -0700

----------------------------------------------------------------------
 docs/manual/data/nav/main.yml                      | 9 +++------
 docs/manual/source/datacollection/eventapi.html.md | 2 ++
 docs/manual/source/deploy/index.html.md            | 6 ++++--
 3 files changed, 9 insertions(+), 8 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/predictionio/blob/f92d2ac5/docs/manual/data/nav/main.yml
----------------------------------------------------------------------
diff --git a/docs/manual/data/nav/main.yml b/docs/manual/data/nav/main.yml
index c938545..1b08d32 100644
--- a/docs/manual/data/nav/main.yml
+++ b/docs/manual/data/nav/main.yml
@@ -59,9 +59,6 @@ root:
         body: 'Deploying as a Web Service'
         url: '/deploy/'
       -
-        body: 'Engine Command-line Interface'
-        url: '/cli/#engine-commands'
-      -
         body: 'Batch Predictions'
         url: '/batchpredict/'
       -
@@ -97,9 +94,6 @@ root:
         body: 'Event Server Overview'
         url: '/datacollection/'
       -
-        body: 'Event Server Command-line Interface'
-        url: '/cli/#event-server-commands'
-      -
         body: 'Collecting Data with REST/SDKs'
         url: '/datacollection/eventapi/'
       -
@@ -322,6 +316,9 @@ root:
     url: '#'
     children:
       -
+        body: 'Command-line Interface'
+        url: '/cli/'
+      -
         body: 'Release Cadence'
         url: '/resources/release/'
       -

http://git-wip-us.apache.org/repos/asf/predictionio/blob/f92d2ac5/docs/manual/source/datacollection/eventapi.html.md
----------------------------------------------------------------------
diff --git a/docs/manual/source/datacollection/eventapi.html.md b/docs/manual/source/datacollection/eventapi.html.md
index c847b48..98a4d64 100644
--- a/docs/manual/source/datacollection/eventapi.html.md
+++ b/docs/manual/source/datacollection/eventapi.html.md
@@ -428,3 +428,5 @@ Please use the following CLI command:
 ```
 $ pio app data-delete <your_app_name>
 ```
+
+INFO: See [here](/cli/#event-server-commands) to know details of command-line interface for the event server.

http://git-wip-us.apache.org/repos/asf/predictionio/blob/f92d2ac5/docs/manual/source/deploy/index.html.md
----------------------------------------------------------------------
diff --git a/docs/manual/source/deploy/index.html.md b/docs/manual/source/deploy/index.html.md
index 0533dbd..b117905 100644
--- a/docs/manual/source/deploy/index.html.md
+++ b/docs/manual/source/deploy/index.html.md
@@ -31,8 +31,10 @@ After you have [downloaded an Engine Template](/start/download/),  you can deplo
 
 1. Run `pio app new **your-app-name-here**` and specify the `appName` used in the template's *engine.json* file (you can set it there to your preference).
 2. Run `pio build` to update the engine
-2. Run `pio train` to train a predictive model with training data
-3. Run `pio deploy` to deploy the engine as a service
+3. Run `pio train` to train a predictive model with training data
+4. Run `pio deploy` to deploy the engine as a service
+
+INFO: See [here](/cli/#engine-commands) to know details of command-line interface for the engine server.
 
 A deployed engine listens to port 8000 by default. Your application can [send query to retrieve prediction](/appintegration/) in real-time through the REST interface.