1
0
mirror of https://github.com/bigchaindb/bigchaindb.git synced 2024-06-10 11:35:16 +02:00
Meet BigchainDB. The blockchain database. https://www.bigchaindb.com/
Go to file
Simon Pfeifhofer 645d457b7b Add quotes to env-variables (#2662)
Signed-off-by: Simon Pfeifhofer <simon.pfeifhofer@gmail.com>
2019-09-26 13:10:09 +02:00
.ci
.github
acceptance Update acceptance Dockerfile to use latest Python driver (#2594) 2018-11-03 17:34:36 +01:00
bigchaindb Remove pysha3 for python >= 3.6 (#2652) 2019-09-25 22:22:51 +02:00
docs Add a docs link to the ANSI C driver (#2650) 2019-09-25 22:20:02 +02:00
k8s Change email to devs@bigchaindb.com (#2612) 2018-12-10 18:10:58 +01:00
nginx nginx.conf: Drop TLSv1 & TLSv1.1, enable TLSv1.3 2018-11-17 09:08:08 +01:00
pkg Add quotes to env-variables (#2662) 2019-09-26 13:10:09 +02:00
proposals
snap
tests Remove pysha3 for python >= 3.6 (#2652) 2019-09-25 22:22:51 +02:00
tmdata
.dockerignore
.gitignore
.pre-commit-config.yaml
.readthedocs.yml
.travis.yml
CHANGELOG.md Last commit before v2.0.0b9 (#2608) 2018-11-27 19:50:05 +01:00
CODE_OF_CONDUCT.md Change email to devs@bigchaindb.com (#2612) 2018-12-10 18:10:58 +01:00
codecov.yml
docker-compose.yml Restart on sporadic failures on BDB container#2624 (#2634) 2019-02-26 09:57:38 +01:00
Dockerfile Remove --no-cache-dir from all pip install cmds (#2628) 2019-01-29 13:51:29 +01:00
Dockerfile-all-in-one Remove --no-cache-dir from all pip install cmds (#2628) 2019-01-29 13:51:29 +01:00
Dockerfile-alpine Remove --no-cache-dir from all pip install cmds (#2628) 2019-01-29 13:51:29 +01:00
Dockerfile-dev Remove pysha3 for python >= 3.6 (#2652) 2019-09-25 22:22:51 +02:00
LICENSE
LICENSES.md Updates for the switch from BEP-16 to BEP-24 (#2641) 2019-04-15 23:47:56 +02:00
Makefile
pytest.ini Problem: There are unnecessary markers (#2522) 2018-09-10 09:53:18 +02:00
PYTHON_STYLE_GUIDE.md Replace rel link with absolute URL 2019-01-24 13:57:44 +01:00
README_cn.md Translate the readme to Chinese (#2615) 2018-12-24 15:51:24 +01:00
README_kor.md Translate the readme to Korean (#2592) 2018-11-01 15:17:47 +01:00
README.md Change email to devs@bigchaindb.com (#2612) 2018-12-10 18:10:58 +01:00
RELEASE_PROCESS.md Add extra step to RELEASE_PROCESS.md 2018-11-09 20:21:06 +01:00
ROADMAP.md
run-acceptance-test.sh
setup.cfg
setup.py Remove pysha3 for python >= 3.6 (#2652) 2019-09-25 22:22:51 +02:00
tox.ini Sphinx changed how it handles rel links in .md (#2627) 2019-01-24 14:21:21 +01:00

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.