holochain_cli_launch 0.0.12

A CLI to launch holochain apps in a Holochain Launcher environment for testing and development purposes.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use structopt::StructOpt;

#[tokio::main]
async fn main() -> anyhow::Result<()> {
  if std::env::var_os("RUST_LOG").is_some() {
    observability::init_fmt(observability::Output::Log).ok();
  }
  let opt = holochain_cli_launch::cli::HcLaunch::from_args();
  opt.run().await
}