From 96e760046f88e24025a3bb628abfaf439c3d5361 Mon Sep 17 00:00:00 2001 From: Troy McConaghy Date: Mon, 20 Feb 2017 14:15:18 +0100 Subject: [PATCH 1/3] docs: better links at end of Quickstart page --- docs/server/source/quickstart.md | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/docs/server/source/quickstart.md b/docs/server/source/quickstart.md index 3c6a78f3..0a1938a2 100644 --- a/docs/server/source/quickstart.md +++ b/docs/server/source/quickstart.md @@ -55,4 +55,22 @@ $ bigchaindb start That's it! -Next Steps: You could build valid transactions and push them to your running BigchainDB Server using the [BigchaindB Python Driver](https://docs.bigchaindb.com/projects/py-driver/en/latest/index.html). +Next Steps: You could... + +* [install the BigchainDB Python Driver](https://docs.bigchaindb.com/projects/py-driver/en/latest/quickstart.html) and +* [use the BigchainDB Python Driver to build a valid transaction, and post that transaction to your running server](https://docs.bigchaindb.com/projects/py-driver/en/latest/usage.html). + +
+ +
+
+
+
+
+
+
+
+
+
+
+
From 5e8cec65cdee82c2b491eb38a13b0d9b113191c7 Mon Sep 17 00:00:00 2001 From: Troy McConaghy Date: Mon, 20 Feb 2017 17:52:48 +0100 Subject: [PATCH 2/3] docs: Simplified Quickstart page even more --- docs/server/source/quickstart.md | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/docs/server/source/quickstart.md b/docs/server/source/quickstart.md index 0a1938a2..9ef6702d 100644 --- a/docs/server/source/quickstart.md +++ b/docs/server/source/quickstart.md @@ -4,7 +4,6 @@ This page has instructions to set up a single stand-alone BigchainDB node for le A. Install the database backend. -[Install RethinkDB Server](https://rethinkdb.com/docs/install/ubuntu/) or [Install MongoDB Server 3.4+](https://docs.mongodb.com/manual/tutorial/install-mongodb-on-ubuntu/) B. Run the database backend. Open a Terminal and run the command: @@ -53,12 +52,10 @@ G. Run the BigchainDB Server: $ bigchaindb start ``` -That's it! +You now have a running BigchainDB Server and can post transactions to it. +One way to do that is to use the BigchainDB Python Driver. -Next Steps: You could... - -* [install the BigchainDB Python Driver](https://docs.bigchaindb.com/projects/py-driver/en/latest/quickstart.html) and -* [use the BigchainDB Python Driver to build a valid transaction, and post that transaction to your running server](https://docs.bigchaindb.com/projects/py-driver/en/latest/usage.html). +[Install the BigchainDB Python Driver (link)](https://docs.bigchaindb.com/projects/py-driver/en/latest/quickstart.html)
From 34286467b7cc0f8a7a684ca70ac9023be75e2904 Mon Sep 17 00:00:00 2001 From: Troy McConaghy Date: Mon, 20 Feb 2017 18:04:47 +0100 Subject: [PATCH 3/3] docs: removed all RethinkDB stuff from Quickstart page --- docs/server/source/quickstart.md | 22 ++++------------------ 1 file changed, 4 insertions(+), 18 deletions(-) diff --git a/docs/server/source/quickstart.md b/docs/server/source/quickstart.md index 9ef6702d..2eae07f0 100644 --- a/docs/server/source/quickstart.md +++ b/docs/server/source/quickstart.md @@ -2,18 +2,11 @@ This page has instructions to set up a single stand-alone BigchainDB node for learning or experimenting. Instructions for other cases are [elsewhere](introduction.html). We will assume you're using Ubuntu 16.04 or similar. If you're not using Linux, then you might try [running BigchainDB with Docker](appendices/run-with-docker.html). -A. Install the database backend. +A. Install MongoDB as the database backend. (There are other options but you can ignore them for now.) [Install MongoDB Server 3.4+](https://docs.mongodb.com/manual/tutorial/install-mongodb-on-ubuntu/) -B. Run the database backend. Open a Terminal and run the command: - -with RethinkDB -```text -$ rethinkdb -``` - -with MongoDB __3.4+__ +B. Run MongoDB. Open a Terminal and run the command: ```text $ mongod --replSet=bigchain-rs ``` @@ -35,19 +28,12 @@ E. Install the `bigchaindb` Python package from PyPI: $ sudo pip3 install bigchaindb ``` -F. Configure the BigchainDB Server: and run BigchainDB Server: - -with RethinkDB -```text -$ bigchaindb -y configure rethinkdb -``` - -with MongoDB +F. Configure BigchainDB Server: ```text $ bigchaindb -y configure mongodb ``` -G. Run the BigchainDB Server: +G. Run BigchainDB Server: ```text $ bigchaindb start ```