mirror of
https://github.com/bigchaindb/bigchaindb.git
synced 2024-10-13 13:34:05 +00:00
23 lines
709 B
Markdown
23 lines
709 B
Markdown
# The BigchainDB Command Line Interfaces (CLIs)
|
|
|
|
BigchainDB has some Command Line Interfaces (CLIs). One of them is the `bigchaindb` command which we already saw when we first started BigchainDB using:
|
|
```text
|
|
$ bigchaindb start
|
|
```
|
|
|
|
The fist time you run `bigchaindb start`, it creates a default configuration file in `$HOME/.bigchaindb`. You can check that configuration using:
|
|
```text
|
|
$ bigchaindb show-config
|
|
```
|
|
|
|
To find out what else you can do with the `bigchain` command, use:
|
|
```text
|
|
$ bigchaindb -h
|
|
```
|
|
|
|
There's another command named `bigchaindb-benchmark`. It's used to run benchmarking tests. You can learn more about it using:
|
|
```text
|
|
$ bigchaindb-benchmark -h
|
|
$ bigchaindb-benchmark load -h
|
|
```
|