holochain_cli_run_local_services 0.4.0-dev.0

Run a holochain webrtc signal server and bootstrap server.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use clap::Parser;

#[tokio::main(flavor = "multi_thread")]
async fn main() {
    if std::env::var_os("RUST_LOG").is_some() {
        holochain_trace::init_fmt(holochain_trace::Output::Log).ok();
    }
    let ops = holochain_cli_run_local_services::HcRunLocalServices::parse();

    ops.run().await
}