You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@couchdb.apache.org by GitBox <gi...@apache.org> on 2018/11/23 18:28:01 UTC

[GitHub] wohali closed pull request #335: Update responses and UI copy in Getting Started Guide

wohali closed pull request #335: Update responses and UI copy in Getting Started Guide
URL: https://github.com/apache/couchdb-documentation/pull/335
 
 
   

This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:

As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):

diff --git a/src/intro/tour.rst b/src/intro/tour.rst
index c7de430..fe6e967 100644
--- a/src/intro/tour.rst
+++ b/src/intro/tour.rst
@@ -41,10 +41,15 @@ The reply should look something like:
 
     {
         "couchdb": "Welcome",
+        "version": "2.2.0",
+        "git_sha":"2a16ec4",
+        "features": [
+            "pluggable-storage-engines",
+            "scheduler"
+        ],
         "vendor": {
             "name": "The Apache Software Foundation"
-        },
-        "version": "2.0.0"
+        }
     }
 
 Not all that spectacular. CouchDB is saying "hello" with the running version
@@ -58,7 +63,12 @@ All we added to the previous request is the _all_dbs string.
 
 The response should look like::
 
-    ["_replicator","_users"]
+    ["_global_changes","_replicator","_users"]
+
+.. note::
+    In case this returns an empty Array for you, it means you haven't finished
+    installation correctly. Please refer to :ref:`setup` for further
+    information on this.
 
 Oh, that's right, we didn't create any databases yet! All we see is an empty
 list.
@@ -335,7 +345,7 @@ Edit the map function, on the right, so that it looks like the following:
 This is a JavaScript function that CouchDB runs for each of our documents as
 it computes the view. We'll leave the reduce function blank for the time being.
 
-Click "Run" and you should see result rows,
+Click "Save Document and then Build Index" and you should see result rows,
 with the various items sorted by price. This map function could be even more
 useful if it grouped the items by type so that all the prices for bananas were
 next to each other in the result set. CouchDB's key sorting system allows any


 

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services