Meet BigchainDB. The blockchain database. https://www.bigchaindb.com/
Go to file
yongtheskill 3c89d306ef
Capitalisation mistake (#2734)
Changed "BigchaindB" to "BigchainDB"
2022-05-17 00:30:19 +02:00
.ci [WIP] Maintenance release (#2728) 2021-12-06 14:09:51 +01:00
.github Replace headers (#2683) 2020-04-06 11:52:18 +02:00
acceptance Flask update (#2700) 2020-06-02 14:36:56 +07:00
bigchaindb docs: fix simple typo, neeeded -> needed (#2717) 2021-12-06 14:11:29 +01:00
docs Capitalisation mistake (#2734) 2022-05-17 00:30:19 +02:00
k8s Update priv validator format in k8s to support tm v0.28.0+ 2020-09-29 12:17:46 +00:00
nginx Replace headers (#2683) 2020-04-06 11:52:18 +02:00
pkg chmod +x tm_config_gen tm_start 2020-09-29 12:17:46 +00:00
proposals Replace headers (#2683) 2020-04-06 11:52:18 +02:00
snap Replace headers (#2683) 2020-04-06 11:52:18 +02:00
tests docs: fix simple typo, neeeded -> needed (#2717) 2021-12-06 14:11:29 +01: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 [WIP] Documentation re-org (#2694) 2020-05-18 20:22:26 +07:00
.pre-commit-config.yaml Replace headers (#2683) 2020-04-06 11:52:18 +02:00
.readthedocs.yml Replace headers (#2683) 2020-04-06 11:52:18 +02:00
.travis.yml [WIP] Maintenance release (#2728) 2021-12-06 14:09:51 +01:00
CHANGELOG.md Update changelog 2020-09-29 12:17:46 +00:00
CODE_OF_CONDUCT.md Replace headers (#2683) 2020-04-06 11:52:18 +02:00
Dockerfile Update email addresses 2020-09-29 12:17:46 +00:00
Dockerfile-all-in-one Update email addresses 2020-09-29 12:17:46 +00:00
Dockerfile-alpine Update Dockerfile-alpine and losen 'packaging' version 2020-09-29 12:17:46 +00:00
Dockerfile-dev [WIP] Maintenance release (#2728) 2021-12-06 14:09:51 +01:00
LICENSE Problem: GitHub can't detect the code license (#2227) 2018-04-20 10:23:19 +02:00
LICENSES.md Updates for the switch from BEP-16 to BEP-24 (#2641) 2019-04-15 23:47:56 +02:00
Makefile fixed chardet version to 3.0.4 (#2736) 2022-05-17 00:29:54 +02:00
PYTHON_STYLE_GUIDE.md Replace headers (#2683) 2020-04-06 11:52:18 +02:00
README.md Replace headers (#2683) 2020-04-06 11:52:18 +02:00
README_cn.md Replace headers (#2683) 2020-04-06 11:52:18 +02:00
README_kor.md Version bump to 2.2.0 (#2682) 2020-02-20 16:30:37 +01:00
RELEASE_PROCESS.md Replace headers (#2683) 2020-04-06 11:52:18 +02:00
ROADMAP.md Replace headers (#2683) 2020-04-06 11:52:18 +02:00
codecov.yml Replace headers (#2683) 2020-04-06 11:52:18 +02:00
docker-compose.yml [WIP] Documentation re-org (#2694) 2020-05-18 20:22:26 +07:00
pytest.ini Problem: There are unnecessary markers (#2522) 2018-09-10 09:53:18 +02:00
run-acceptance-test.sh Replace headers (#2683) 2020-04-06 11:52:18 +02:00
setup.cfg Add flake8 option to setup.cfg 2017-01-11 05:13:27 -05:00
setup.py fixed chardet version to 3.0.4 (#2736) 2022-05-17 00:29:54 +02:00
tox.ini [WIP] Maintenance release (#2728) 2021-12-06 14:09:51 +01:00

README.md

Codecov branch 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.