Meet BigchainDB. The blockchain database. https://www.bigchaindb.com/
Go to file
Muawia Khan 49bc495cc4 Last pr before 2.0 beta 5 (#2430)
* Last PR before the release of BigchainDB 2.0 Beta 5

* Fix editing error

* Change development status back to 4 - beta

* Rephrase some fixes I

* Rephrase some fixes II
2018-08-01 15:40:05 +02:00
.ci Problem: Code codecoverage does not work (#2355). 2018-06-19 10:58:12 +02:00
.github Problem: Docs re contributing needed editing & reorg 2018-03-27 10:18:51 +02:00
acceptance Problem: we don't have any tests to cover malicious strings (#2334) 2018-07-10 17:30:00 +02:00
bigchaindb Last pr before 2.0 beta 5 (#2430) 2018-08-01 15:40:05 +02:00
docs Problem: Simple network guide outdated, some new parameters required (#2429) 2018-08-01 11:27:20 +02:00
k8s Last pr before 2.0 beta 5 (#2430) 2018-08-01 15:40:05 +02:00
pkg Upgrade tm_version to 0.22.8 (#2426) 2018-07-31 17:27:16 +02:00
proposals Remove `create the node keypair` from bigchaindb configure --help 2018-02-22 16:04:43 +01:00
snap Problem: Some marketing copy (text blurbs) was old 2018-03-25 13:28:21 +02:00
tests Problem: No test to validate duplicate inputs (#2425) 2018-07-31 14:33:28 +02:00
tmdata Problem: Support for latest Tendermint missing (#2375) 2018-07-10 14:16:02 +02:00
.dockerignore Fix some config issues for docker-compose 2016-02-15 14:42:15 +01:00
.gitignore Don't include docs fetched-at-build-time in Git repo 2018-03-27 10:27:27 +02:00
.pre-commit-config.yaml Problem: Pre-commit does not validate acceptance tests. (#2295) 2018-05-16 14:45:34 +02:00
.readthedocs.yml Added build yml for readthedocs 2018-02-14 19:40:36 +05:30
.travis.yml Problem: Acceptance tests on ci failing (#2256) 2018-05-02 18:16:54 +02:00
CHANGELOG.md Last pr before 2.0 beta 5 (#2430) 2018-08-01 15:40:05 +02:00
CODE_OF_CONDUCT.md Added protection for discrimination based on species 2016-02-23 15:26:11 +01:00
Dockerfile Problem: abci dependency not processed (#2245) 2018-04-27 18:54:26 +02:00
Dockerfile-alpine Problem: Support for latest Tendermint missing (#2375) 2018-07-10 14:16:02 +02:00
Dockerfile-dev Problem: we don't have any tests to cover malicious strings (#2334) 2018-07-10 17:30:00 +02:00
HOW_TO_HANDLE_PULL_REQUESTS.md Problem: what if someone agrees to CLA but no PR? (#2313) 2018-06-01 14:54:51 +02:00
LICENSE Problem: GitHub can't detect the code license (#2227) 2018-04-20 10:23:19 +02:00
LICENSES.md Change the docs license from CC-BY-SA-4 to CC-BY-4 (#2427) 2018-07-31 17:38:07 +02:00
Makefile Problem: Tendermint freezes due to docker-compose bug. (#2341) 2018-06-12 10:26:52 +02:00
PYTHON_STYLE_GUIDE.md Pre commit styling (#1914) 2017-11-30 15:04:14 +01:00
README.md Fixed a typo in README.md 2018-06-09 09:32:58 +02:00
RELEASE_PROCESS.md Problem: Release process instructions for Docker Hub incomplete (#2407) 2018-07-30 15:47:26 +02:00
ROADMAP.md Changed ROADMAP.md to link to the new roadmap location 2016-05-19 19:20:48 +02:00
codecov.yml Problem: Still using "team bot" after installing Codecov (#2325) 2018-06-01 10:51:35 +02:00
docker-compose.yml Upgrade tm_version to 0.22.8 (#2426) 2018-07-31 17:27:16 +02:00
pytest.ini Add tendermint marker to pytest.ini 2018-02-08 15:41:44 +01:00
run-acceptance-test.sh Problem: we don't have acceptance tests (#2216) 2018-04-30 14:43:39 +02:00
setup.cfg Add flake8 option to setup.cfg 2017-01-11 05:13:27 -05:00
setup.py Problem: It is cumbersome to manage BigchainDB and Tendermint processes (#2410). 2018-07-27 17:33:55 +02:00
tox.ini Problem: Some configurations are defunct (#2338) 2018-06-08 15:50:50 +02:00

README.md

Latest release Status on PyPI Travis branch Documentation Status Join the chat at https://gitter.im/bigchaindb/bigchaindb

BigchainDB Server

BigchainDB is the blockchain database. This repository is for BigchainDB Server.

The Basics

Run and Test BigchainDB Server from the master Branch

Running and testing the latest version of BigchainDB Server is easy. Make sure you have a recent version of Docker Compose installed. When you are ready, fire up a terminal and run:

git clone https://github.com/bigchaindb/bigchaindb.git
cd bigchaindb
make run

BigchainDB should be reachable now on http://localhost:9984/.

There are also other commands you can execute:

  • make start: Run BigchainDB from source and daemonize it (stop it with make stop).
  • make stop: Stop BigchainDB.
  • make logs: Attach to the logs.
  • make test: Run all unit and acceptance tests.
  • make test-unit-watch: Run all tests and wait. Every time you change code, tests will be run again.
  • make cov: Check code coverage and open the result in the browser.
  • make doc: Generate HTML documentation and open it in the browser.
  • make clean: Remove all build, test, coverage and Python artifacts.
  • make reset: Stop and REMOVE all containers. WARNING: you will LOSE all data stored in BigchainDB.

To view all commands available, run make.