1
0
mirror of https://github.com/bigchaindb/bigchaindb.git synced 2024-06-10 20:05:02 +02:00
Meet BigchainDB. The blockchain database. https://www.bigchaindb.com/
Go to file
Vanshdeep Singh af2b5424c0 Problem: Cryptoconditions not pinned which is casuing build failure (#2512)
Solution: Pin cryptoconditions so that docs build properly
2018-09-04 15:45:48 +02:00
.ci Problem: Source files contain no license info (#2455) 2018-08-16 12:31:32 +02:00
.github Problem: Source files contain no license info (#2455) 2018-08-16 12:31:32 +02:00
acceptance Update bigchaindb-driver version -> 0.5.2 in acceptance test (#2503) 2018-08-31 16:56:34 +02:00
bigchaindb Problem: Validation code not optimized (#2490) 2018-09-04 15:30:52 +02:00
docs Problem: Code Reference docs hidden in appendices (#2473) 2018-09-04 12:17:27 +02:00
k8s Problem: Source files contain no license info (#2455) 2018-08-16 12:31:32 +02:00
pkg Problem: Source files contain no license info (#2455) 2018-08-16 12:31:32 +02:00
proposals Problem: All Tendermint docs moved (#2483) 2018-08-28 11:13:59 +02:00
snap Problem: Source files contain no license info (#2455) 2018-08-16 12:31:32 +02:00
tests Problem: Validation code not optimized (#2490) 2018-09-04 15:30:52 +02:00
tmdata Problem: Support for latest Tendermint missing (#2375) 2018-07-10 14:16:02 +02:00
.dockerignore
.gitignore
.pre-commit-config.yaml Problem: Source files contain no license info (#2455) 2018-08-16 12:31:32 +02:00
.readthedocs.yml Problem: Source files contain no license info (#2455) 2018-08-16 12:31:32 +02:00
.travis.yml Problem: Source files contain no license info (#2455) 2018-08-16 12:31:32 +02:00
CHANGELOG.md Problem: All Tendermint docs moved (#2483) 2018-08-28 11:13:59 +02:00
CODE_OF_CONDUCT.md Problem: Source files contain no license info (#2455) 2018-08-16 12:31:32 +02:00
codecov.yml Problem: Source files contain no license info (#2455) 2018-08-16 12:31:32 +02:00
docker-compose.yml Problem: Source files contain no license info (#2455) 2018-08-16 12:31:32 +02:00
Dockerfile Problem: People request all-in-one BigchainDB container (#2424). 2018-08-02 14:05:23 +02:00
Dockerfile-all-in-one Problem: remove autodraft from download link (#2454) 2018-08-09 15:17:46 +02:00
Dockerfile-alpine Problem: Support for latest Tendermint missing (#2375) 2018-07-10 14:16:02 +02:00
Dockerfile-dev Problem: Users want to know upsert-validator election status. 2018-08-30 10:47:37 +02:00
HOW_TO_HANDLE_PULL_REQUESTS.md Problem: Source files contain no license info (#2455) 2018-08-16 12:31:32 +02:00
LICENSE
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
pytest.ini Problem: make unit-test-watch loops forever (#2486) 2018-08-29 14:14:47 +02:00
PYTHON_STYLE_GUIDE.md Problem: Source files contain no license info (#2455) 2018-08-16 12:31:32 +02:00
README.md Problem: Source files contain no license info (#2455) 2018-08-16 12:31:32 +02:00
RELEASE_PROCESS.md Problem: Source files contain no license info (#2455) 2018-08-16 12:31:32 +02:00
ROADMAP.md Problem: Source files contain no license info (#2455) 2018-08-16 12:31:32 +02:00
run-acceptance-test.sh Problem: Source files contain no license info (#2455) 2018-08-16 12:31:32 +02:00
setup.cfg
setup.py Problem: Cryptoconditions not pinned which is casuing build failure (#2512) 2018-09-04 15:45:48 +02:00
tox.ini Problem: Some configurations are defunct (#2338) 2018-06-08 15:50:50 +02: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.