# brk_cli
Command-line interface for running a Bitcoin Research Kit instance.
## Preview
- https://bitview.space - web interface
- https://bitview.space/api - API docs
## Requirements
- Bitcoin Core running with RPC enabled
- Access to `blk*.dat` files
- ~400 GB disk space
- 12+ GB RAM
## Install
```bash
rustup update
Portable build (without native CPU optimizations):
```bash
cargo install --locked brk_cli
```
## Run
```bash
brk
```
Indexes the blockchain, computes datasets, starts the server on `localhost:3110`, and waits for new blocks.
## Options
```bash
brk -h # Show all options
brk -V # Show version
```
Options are saved to `~/.brk/config.toml` after first use.
## Files
```
~/.brk/
├── config.toml Configuration
└── log Logs
<brkdir>/ Indexed data (default: ~/.brk)
```