diff --git a/docs/server/source/quickstart.md b/docs/server/source/quickstart.md index 3c6a78f3..2eae07f0 100644 --- a/docs/server/source/quickstart.md +++ b/docs/server/source/quickstart.md @@ -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). -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/) -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 ``` @@ -36,23 +28,32 @@ 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 ``` -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) + +