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

make web demo cmds copy #352

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
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
30 changes: 20 additions & 10 deletions docs/cloud/demos/ws-gateway.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,31 @@ description: "WebSocket Gateway Demomstration"
sidebar_position: 1
---

1. Setup a Cloud Cluster
1. Register
2. Install CLI
3. Login with CLI
4. Create a Cluster
5. Create a topic named <strong>webdemo</strong>
2. Create and access key
```shell
1. Setup an Infinyon Cloud cluster by following the [Quick Start]
2. Create a topic named <strong>webdemo</strong>
```shell copy="fl"
$ fluvio topic create webdemo
```
3. Create an access key
```shell copy="fl"
$ fluvio cloud access-key create web-demo --topic webdemo
```
4. Start producer with access key
3. Start consumer with access key
4. Start producer with access key from step 3
5. Start consumer with access key from step 3

### Producer Iframe
The producer demo app runs in a CodePen iframe. It will connect to the WebSocket Gateway and produce (x, y) values of a sine wave to the <strong>webdemo</strong> topic. This is independent of the consumer charting app and is only interacting with the Fluvio topic via the WebSocket Gateway.
<iframe height="256" width="100%" title="Producer" src="https://codepen.io/Nick-Cardin/embed/PwYrjjw?default-tab=result"></iframe>

### Consumer Iframe
The consumer demo app runs in a CodePen iframe. It will connect to the WebSocket Gateway and consume and chart (x, y) values from the <strong>webdemo</strong> topic. This is independent of the sine wave producer app and is only interacting with the Fluvio topic via the WebSocket Gateway.
<iframe height="512" width="100%" title="Consumer" src="https://codepen.io/Nick-Cardin/embed/PwYrjEq?default-tab=result"></iframe>

### Watch with Fluvio CLI
The data being produced can be simultaneously consumed with the Fluvio CLI.

```shell copy="fl"
$ fluvio consume webdemo
```

[Quick Start]: cloud/quickstart.mdx
8 changes: 4 additions & 4 deletions docs/cloud/how-to/use-ws-gateway.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ The WebSocket Gateway allows you to produce and consume data using a WebSocket c

First, create a topic to interact with.

```shell
```shell copy="fl"
$ fluvio topic create my-topic
topic "my-topic" created
```
Expand All @@ -21,7 +21,7 @@ topic "my-topic" created

Create an access key to authenticate the WebSocket connection. This key will only allow access to the specified topic.

```shell
```shell copy="fl"
$ fluvio cloud access-key create my-access-key-1 --topic my-topic
Access key "my-access-key-1" created: zGO0WBmCM4EAEJYbksCjGzJrrKHdgwPa
- Produce: wss://infinyon.cloud/wsr/v1/simple/produce?access_key=zGO0WBmCM4EAEJYbksCjGzJrrKHdgwPa
Expand All @@ -32,12 +32,12 @@ Access key "my-access-key-1" created: zGO0WBmCM4EAEJYbksCjGzJrrKHdgwPa
Optionally, you can restrict an access key to only allow producing or consuming data by passing the `--consume` or `--produce` flag when creating the access key.

#### Consume Only
```shell
```shell copy="fl"
$ fluvio cloud access-key create my-consume-key --topic my-topic --consume
```

#### Produce Only
```shell
```shell copy="fl"
$ fluvio cloud access-key create my-produce-key --topic my-topic --produce
```

Expand Down