Skip to content

Commit

Permalink
0.7.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Connoropolous committed May 20, 2023
1 parent 014afce commit 54cb209
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>", "Wesley Finck <[email protected]>"]
authors = ["Connor Turland <[email protected]>", "Wesley Finck <[email protected]>", "Karl Bonnici <[email protected]>"]
license = "CAL-1.0"
repository = "https://github.com/lightningrodlabs/holochain-runner"
edition = "2021"
Expand Down
10 changes: 7 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -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:
Expand All @@ -32,7 +32,7 @@ OPTIONS:
value of `<datastore_path>/keystore`.
--network-seed <network-seed>
--webrtc-signal-url <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:
Expand Down Expand Up @@ -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.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ value of `<datastore_path>/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,
Expand Down

0 comments on commit 54cb209

Please sign in to comment.