Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

websocat check in ray docs #101

Merged
merged 4 commits into from
Sep 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions src/markdoc/partials/ray/websocat-requirement.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
Additionally, a tool named [websocat](https://lib.rs/crates/websocat) is needed to wrap connections between your machine and Ray on the Golem cluster.
You can install websocat using [these instructions](https://lindevs.com/install-websocat-on-ubuntu/).

Verify websocat is present:
```bash
websocat -V
```
It should print something like:
```
websocat 1.11.0
```

Original file line number Diff line number Diff line change
Expand Up @@ -163,8 +163,7 @@ pip3 install -U ray-on-golem
curl -sSf https://join.golem.network/as-requestor | bash -
```

Additionally, a tool named [websocat](https://lib.rs/crates/websocat) is needed to wrap connections between your machine and Ray on the Golem cluster.
You can install websocat using [these instructions](https://lindevs.com/install-websocat-on-ubuntu/).
{% partial file="ray/websocat-requirement.md" /%}

Now, run the following to start a basic cluster, based on our example configuration. Your cluster will run on our testnet - it is free, but not very powerful.

Expand Down
3 changes: 1 addition & 2 deletions src/pages/docs/creators/ray/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,7 @@ For now, you also need to download and install Golem node software representing
curl -sSf https://join.golem.network/as-requestor | bash -
```

Additionally, a tool named [websocat](https://lib.rs/crates/websocat) is needed to wrap connections between your machine and Ray on the Golem cluster.
You can install websocat using [these instructions](https://lindevs.com/install-websocat-on-ubuntu/).
{% partial file="ray/websocat-requirement.md" /%}

## Set the cluster up

Expand Down
3 changes: 1 addition & 2 deletions src/pages/docs/creators/ray/setup-tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,7 @@ It will install the default ray package as a dependency, but if you want more Ra
pip3 install -U ray-on-golem
```

Additionally, a tool named [websocat](https://lib.rs/crates/websocat) is needed to wrap connections between your machine and Ray on the Golem cluster.
You can install websocat using [these instructions](https://lindevs.com/install-websocat-on-ubuntu/).
{% partial file="ray/websocat-requirement.md" /%}

## Install yagna (Golem daemon used to schedule work on the Golem Network)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,5 @@ It is demonstrated for example in [this tutorial](/docs/creators/ray/conversion-

## Websocat

Ray on Golem uses a tool named [websocat](https://lib.rs/crates/websocat) to wrap connections between your machine and Ray on the Golem cluster.
You can install websocat using [these instructions](https://lindevs.com/install-websocat-on-ubuntu/).
{% partial file="ray/websocat-requirement.md" /%}

3 changes: 1 addition & 2 deletions src/pages/docs/quickstarts/ray-quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,7 @@ For now, you also need to download and install Golem node software representing
curl -sSf https://join.golem.network/as-requestor | bash -
```

Additonally, a tool named [websocat](https://lib.rs/crates/websocat) is needed to wrap connections between your machine and Ray on Golem cluster.
You can install websocat using [these instructions](https://lindevs.com/install-websocat-on-ubuntu/).
{% partial file="ray/websocat-requirement.md" /%}

## Set the cluster up

Expand Down
Loading