This is an automated email from the ASF dual-hosted git repository.
wohali pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/couchdb-documentation.git
The following commit(s) were added to refs/heads/master by this push:
new 9b27869 Update responses and UI copy in Getting Started Guide (#335)
9b27869 is described below
commit 9b27869407d23ff1488720b235b534feae0125ec
Author: Frederik Ring <[email protected]>
AuthorDate: Fri Nov 23 19:27:59 2018 +0100
Update responses and UI copy in Getting Started Guide (#335)
* Update responses and UI copy in Getting Started Guide
* Add note about possibly unfinished installation
* Update setup reference
---
src/intro/tour.rst | 18 ++++++++++++++----
1 file changed, 14 insertions(+), 4 deletions(-)
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