diff --git a/Cargo.lock b/Cargo.lock index 8bec74d..0c89122 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2199,7 +2199,7 @@ dependencies = [ [[package]] name = "holochain-runner" -version = "0.7.2" +version = "0.7.3" dependencies = [ "base64 0.13.1", "ctrlc", diff --git a/Cargo.toml b/Cargo.toml index eedc59d..e8a3880 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,8 +1,8 @@ [package] name = "holochain-runner" -version = "0.7.2" +version = "0.7.3" description = "a Holochain runtime binary with key management, good defaults, and Status Update events. Suitable for development and production environments" -authors = ["Connor Turland ", "Wesley Finck "] +authors = ["Connor Turland ", "Wesley Finck ", "Karl Bonnici "] license = "CAL-1.0" repository = "https://github.com/lightningrodlabs/holochain-runner" edition = "2021" diff --git a/README.md b/README.md index 389ebc9..0d6fa24 100644 --- a/README.md +++ b/README.md @@ -1,13 +1,13 @@ # holochain-runner -> Underlying Holochain Version: [v0.2.0](https://github.com/holochain/holochain/blob/main/CHANGELOG.md#20230427171927) +> Underlying Holochain Version: [v0.2.1-beta-dev.0](https://github.com/holochain/holochain/blob/main-0.2/CHANGELOG.md#20230515083847) > > Expects an HAPP built with HDK [v0.2.0](https://docs.rs/hdk/0.2.0/hdk/index.html) and HDI [v0.3.0](https://docs.rs/hdi/0.3.0/hdi/index.html) An alternative Holochain conductor binary useful for quick startup and including handling of key generation and hApp installation. ```bash -holochain-runner 0.7.2 +holochain-runner 0.7.3 wrapped Holochain Conductor with Status Update events, and a good SIGTERM kill switch USAGE: @@ -32,7 +32,7 @@ OPTIONS: value of `/keystore`. --network-seed --webrtc-signal-url - Websocket URL (wss) to a holochain tx5 WebRTC signal server [default: wss://signal.holotest.net] + Websocket URL (wss) to a holochain tx5 WebRTC signal server [default: wss://signal.holo.host] ARGS: @@ -96,3 +96,7 @@ pub enum StateSignal { ## Bootstrap Networking Service This library is currently by default pointed at the `https://bootstrap.holo.host` node discovery service, but can be overridden. + +## Signal Service + +This library is currently by default pointed at the `wss://signal.holo.host` WebRTC signal service, but can be overridden. \ No newline at end of file diff --git a/src/main.rs b/src/main.rs index ab53446..b5fd811 100644 --- a/src/main.rs +++ b/src/main.rs @@ -63,7 +63,7 @@ value of `/keystore`." // community #[structopt( long, - default_value = "wss://signal.holotest.net", + default_value = "wss://signal.holo.host:", help = "Websocket URL (wss) to a holochain tx5 WebRTC signal server" )] webrtc_signal_url: String,