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 3 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
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,15 @@ 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/).

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

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.

```bash
Expand Down
9 changes: 9 additions & 0 deletions src/pages/docs/creators/ray/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,15 @@ 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/).

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

## Set the cluster up

With the packages in place, you can download our sample golem cluster configuration yaml, and use it with `ray up` to start up the cluster.
Expand Down
9 changes: 9 additions & 0 deletions src/pages/docs/creators/ray/setup-tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,15 @@ 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/).

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

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

For now, you need to manually install Yagna to be able to connect to the Golem network.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,3 +41,12 @@ It is demonstrated for example in [this tutorial](/docs/creators/ray/conversion-
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/).

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

11 changes: 10 additions & 1 deletion src/pages/docs/quickstarts/ray-quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,18 @@ 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.
Additionally, 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/).

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

## Set the cluster up

With the packages in place, you can download our sample golem cluster configuration yaml, and feed it to `ray up` to start up the cluster.
Expand Down