Merge pull request #1201 from bigchaindb/fix-quickstart-link

Docs: Improvements to the Quickstart page
This commit is contained in:
Troy McConaghy 2017-02-21 18:19:31 +01:00 committed by GitHub
commit 7a63771c2b

View File

@ -2,19 +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). 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 RethinkDB Server](https://rethinkdb.com/docs/install/ubuntu/) or
[Install MongoDB Server 3.4+](https://docs.mongodb.com/manual/tutorial/install-mongodb-on-ubuntu/) [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: B. Run MongoDB. Open a Terminal and run the command:
with RethinkDB
```text
$ rethinkdb
```
with MongoDB __3.4+__
```text ```text
$ mongod --replSet=bigchain-rs $ mongod --replSet=bigchain-rs
``` ```
@ -36,23 +28,32 @@ E. Install the `bigchaindb` Python package from PyPI:
$ sudo pip3 install bigchaindb $ sudo pip3 install bigchaindb
``` ```
F. Configure the BigchainDB Server: and run BigchainDB Server: F. Configure BigchainDB Server:
with RethinkDB
```text
$ bigchaindb -y configure rethinkdb
```
with MongoDB
```text ```text
$ bigchaindb -y configure mongodb $ bigchaindb -y configure mongodb
``` ```
G. Run the BigchainDB Server: G. Run BigchainDB Server:
```text ```text
$ bigchaindb start $ 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 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). [Install the BigchainDB Python Driver (link)](https://docs.bigchaindb.com/projects/py-driver/en/latest/quickstart.html)
<hr>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>