Get Started
Quick Start
Build and run your first Bridge Kernel node in minutes.
Quick Start
This guide gets you from clone to first signed ledger event quickly.
Prerequisites
- Rust toolchain (
rustup,cargo) - Git
1. Clone the Bridge Kernel repo
git clone https://github.com/joulebridge/bridge-kernel.git
cd bridge-kernel2. Create local config
cp bridge.example.yaml bridge.yaml3. Build release binary
cargo build --release4. Run one ingest cycle with mock adapter
./target/release/bridge-node ctl run-once --config bridge.yaml5. Check runtime status
./target/release/bridge-node ctl status --config bridge.yaml6. Inspect ledger summary
./target/release/bridge-node ctl ledger --config bridge.yaml7. View metrics snapshot
./target/release/bridge-node ctl metrics --config bridge.yamlWhat success looks like
- Ingest counters increase.
- Ledger event count is non-zero.
- Runtime health is
okor explains degradation reasons.
Next
- Read Architecture
- Tune Configuration
- Review Security